home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / share / binutils-data / i686-pc-linux-gnu / 2.16.1 / info / bfd.info < prev    next >
Text File  |  2006-01-09  |  412KB  |  9,759 lines

  1. This is
  2. /var/tmp/portage/binutils-2.16.1/work/binutils-2.16.1/bfd/doc/bfd.info,
  3. produced by makeinfo version 4.8 from
  4. /var/tmp/portage/binutils-2.16.1/work/binutils-2.16.1/bfd/doc/bfd.texinfo.
  5.  
  6. START-INFO-DIR-ENTRY
  7. * Bfd: (bfd).                   The Binary File Descriptor library.
  8. END-INFO-DIR-ENTRY
  9.  
  10.    This file documents the BFD library.
  11.  
  12.    Copyright (C) 1991, 2000, 2001, 2003 Free Software Foundation, Inc.
  13.  
  14.    Permission is granted to copy, distribute and/or modify this document
  15.      under the terms of the GNU Free Documentation License, Version 1.1
  16.      or any later version published by the Free Software Foundation;
  17.    with no Invariant Sections, with no Front-Cover Texts, and with no
  18.     Back-Cover Texts.  A copy of the license is included in the
  19. section entitled "GNU Free Documentation License".
  20.  
  21. 
  22. File: bfd.info,  Node: Top,  Next: Overview,  Prev: (dir),  Up: (dir)
  23.  
  24.    This file documents the binary file descriptor library libbfd.
  25.  
  26. * Menu:
  27.  
  28. * Overview::            Overview of BFD
  29. * BFD front end::        BFD front end
  30. * BFD back ends::        BFD back ends
  31. * GNU Free Documentation License::  GNU Free Documentation License
  32. * Index::            Index
  33.  
  34. 
  35. File: bfd.info,  Node: Overview,  Next: BFD front end,  Prev: Top,  Up: Top
  36.  
  37. 1 Introduction
  38. **************
  39.  
  40. BFD is a package which allows applications to use the same routines to
  41. operate on object files whatever the object file format.  A new object
  42. file format can be supported simply by creating a new BFD back end and
  43. adding it to the library.
  44.  
  45.    BFD is split into two parts: the front end, and the back ends (one
  46. for each object file format).
  47.    * The front end of BFD provides the interface to the user. It manages
  48.      memory and various canonical data structures. The front end also
  49.      decides which back end to use and when to call back end routines.
  50.  
  51.    * The back ends provide BFD its view of the real world. Each back
  52.      end provides a set of calls which the BFD front end can use to
  53.      maintain its canonical form. The back ends also may keep around
  54.      information for their own use, for greater efficiency.
  55.  
  56. * Menu:
  57.  
  58. * History::            History
  59. * How It Works::        How It Works
  60. * What BFD Version 2 Can Do::    What BFD Version 2 Can Do
  61.  
  62. 
  63. File: bfd.info,  Node: History,  Next: How It Works,  Prev: Overview,  Up: Overview
  64.  
  65. 1.1 History
  66. ===========
  67.  
  68. One spur behind BFD was the desire, on the part of the GNU 960 team at
  69. Intel Oregon, for interoperability of applications on their COFF and
  70. b.out file formats.  Cygnus was providing GNU support for the team, and
  71. was contracted to provide the required functionality.
  72.  
  73.    The name came from a conversation David Wallace was having with
  74. Richard Stallman about the library: RMS said that it would be quite
  75. hard--David said "BFD".  Stallman was right, but the name stuck.
  76.  
  77.    At the same time, Ready Systems wanted much the same thing, but for
  78. different object file formats: IEEE-695, Oasys, Srecords, a.out and 68k
  79. coff.
  80.  
  81.    BFD was first implemented by members of Cygnus Support; Steve
  82. Chamberlain (`sac@cygnus.com'), John Gilmore (`gnu@cygnus.com'), K.
  83. Richard Pixley (`rich@cygnus.com') and David Henkel-Wallace
  84. (`gumby@cygnus.com').
  85.  
  86. 
  87. File: bfd.info,  Node: How It Works,  Next: What BFD Version 2 Can Do,  Prev: History,  Up: Overview
  88.  
  89. 1.2 How To Use BFD
  90. ==================
  91.  
  92. To use the library, include `bfd.h' and link with `libbfd.a'.
  93.  
  94.    BFD provides a common interface to the parts of an object file for a
  95. calling application.
  96.  
  97.    When an application sucessfully opens a target file (object,
  98. archive, or whatever), a pointer to an internal structure is returned.
  99. This pointer points to a structure called `bfd', described in `bfd.h'.
  100. Our convention is to call this pointer a BFD, and instances of it
  101. within code `abfd'.  All operations on the target object file are
  102. applied as methods to the BFD.  The mapping is defined within `bfd.h'
  103. in a set of macros, all beginning with `bfd_' to reduce namespace
  104. pollution.
  105.  
  106.    For example, this sequence does what you would probably expect:
  107. return the number of sections in an object file attached to a BFD
  108. `abfd'.
  109.  
  110.      #include "bfd.h"
  111.  
  112.      unsigned int number_of_sections (abfd)
  113.      bfd *abfd;
  114.      {
  115.        return bfd_count_sections (abfd);
  116.      }
  117.  
  118.    The abstraction used within BFD is that an object file has:
  119.  
  120.    * a header,
  121.  
  122.    * a number of sections containing raw data (*note Sections::),
  123.  
  124.    * a set of relocations (*note Relocations::), and
  125.  
  126.    * some symbol information (*note Symbols::).
  127.    Also, BFDs opened for archives have the additional attribute of an
  128. index and contain subordinate BFDs. This approach is fine for a.out and
  129. coff, but loses efficiency when applied to formats such as S-records and
  130. IEEE-695.
  131.  
  132. 
  133. File: bfd.info,  Node: What BFD Version 2 Can Do,  Prev: How It Works,  Up: Overview
  134.  
  135. 1.3 What BFD Version 2 Can Do
  136. =============================
  137.  
  138. When an object file is opened, BFD subroutines automatically determine
  139. the format of the input object file.  They then build a descriptor in
  140. memory with pointers to routines that will be used to access elements of
  141. the object file's data structures.
  142.  
  143.    As different information from the object files is required, BFD
  144. reads from different sections of the file and processes them.  For
  145. example, a very common operation for the linker is processing symbol
  146. tables.  Each BFD back end provides a routine for converting between
  147. the object file's representation of symbols and an internal canonical
  148. format. When the linker asks for the symbol table of an object file, it
  149. calls through a memory pointer to the routine from the relevant BFD
  150. back end which reads and converts the table into a canonical form.  The
  151. linker then operates upon the canonical form. When the link is finished
  152. and the linker writes the output file's symbol table, another BFD back
  153. end routine is called to take the newly created symbol table and
  154. convert it into the chosen output format.
  155.  
  156. * Menu:
  157.  
  158. * BFD information loss::    Information Loss
  159. * Canonical format::        The BFD    canonical object-file format
  160.  
  161. 
  162. File: bfd.info,  Node: BFD information loss,  Next: Canonical format,  Up: What BFD Version 2 Can Do
  163.  
  164. 1.3.1 Information Loss
  165. ----------------------
  166.  
  167. _Information can be lost during output._ The output formats supported
  168. by BFD do not provide identical facilities, and information which can
  169. be described in one form has nowhere to go in another format. One
  170. example of this is alignment information in `b.out'. There is nowhere
  171. in an `a.out' format file to store alignment information on the
  172. contained data, so when a file is linked from `b.out' and an `a.out'
  173. image is produced, alignment information will not propagate to the
  174. output file. (The linker will still use the alignment information
  175. internally, so the link is performed correctly).
  176.  
  177.    Another example is COFF section names. COFF files may contain an
  178. unlimited number of sections, each one with a textual section name. If
  179. the target of the link is a format which does not have many sections
  180. (e.g., `a.out') or has sections without names (e.g., the Oasys format),
  181. the link cannot be done simply. You can circumvent this problem by
  182. describing the desired input-to-output section mapping with the linker
  183. command language.
  184.  
  185.    _Information can be lost during canonicalization._ The BFD internal
  186. canonical form of the external formats is not exhaustive; there are
  187. structures in input formats for which there is no direct representation
  188. internally.  This means that the BFD back ends cannot maintain all
  189. possible data richness through the transformation between external to
  190. internal and back to external formats.
  191.  
  192.    This limitation is only a problem when an application reads one
  193. format and writes another.  Each BFD back end is responsible for
  194. maintaining as much data as possible, and the internal BFD canonical
  195. form has structures which are opaque to the BFD core, and exported only
  196. to the back ends. When a file is read in one format, the canonical form
  197. is generated for BFD and the application. At the same time, the back
  198. end saves away any information which may otherwise be lost. If the data
  199. is then written back in the same format, the back end routine will be
  200. able to use the canonical form provided by the BFD core as well as the
  201. information it prepared earlier.  Since there is a great deal of
  202. commonality between back ends, there is no information lost when
  203. linking or copying big endian COFF to little endian COFF, or `a.out' to
  204. `b.out'.  When a mixture of formats is linked, the information is only
  205. lost from the files whose format differs from the destination.
  206.  
  207. 
  208. File: bfd.info,  Node: Canonical format,  Prev: BFD information loss,  Up: What BFD Version 2 Can Do
  209.  
  210. 1.3.2 The BFD canonical object-file format
  211. ------------------------------------------
  212.  
  213. The greatest potential for loss of information occurs when there is the
  214. least overlap between the information provided by the source format,
  215. that stored by the canonical format, and that needed by the destination
  216. format. A brief description of the canonical form may help you
  217. understand which kinds of data you can count on preserving across
  218. conversions.  
  219.  
  220. _files_
  221.      Information stored on a per-file basis includes target machine
  222.      architecture, particular implementation format type, a demand
  223.      pageable bit, and a write protected bit.  Information like Unix
  224.      magic numbers is not stored here--only the magic numbers' meaning,
  225.      so a `ZMAGIC' file would have both the demand pageable bit and the
  226.      write protected text bit set.  The byte order of the target is
  227.      stored on a per-file basis, so that big- and little-endian object
  228.      files may be used with one another.
  229.  
  230. _sections_
  231.      Each section in the input file contains the name of the section,
  232.      the section's original address in the object file, size and
  233.      alignment information, various flags, and pointers into other BFD
  234.      data structures.
  235.  
  236. _symbols_
  237.      Each symbol contains a pointer to the information for the object
  238.      file which originally defined it, its name, its value, and various
  239.      flag bits.  When a BFD back end reads in a symbol table, it
  240.      relocates all symbols to make them relative to the base of the
  241.      section where they were defined.  Doing this ensures that each
  242.      symbol points to its containing section.  Each symbol also has a
  243.      varying amount of hidden private data for the BFD back end.  Since
  244.      the symbol points to the original file, the private data format
  245.      for that symbol is accessible.  `ld' can operate on a collection
  246.      of symbols of wildly different formats without problems.
  247.  
  248.      Normal global and simple local symbols are maintained on output,
  249.      so an output file (no matter its format) will retain symbols
  250.      pointing to functions and to global, static, and common variables.
  251.      Some symbol information is not worth retaining; in `a.out', type
  252.      information is stored in the symbol table as long symbol names.
  253.      This information would be useless to most COFF debuggers; the
  254.      linker has command line switches to allow users to throw it away.
  255.  
  256.      There is one word of type information within the symbol, so if the
  257.      format supports symbol type information within symbols (for
  258.      example, COFF, IEEE, Oasys) and the type is simple enough to fit
  259.      within one word (nearly everything but aggregates), the
  260.      information will be preserved.
  261.  
  262. _relocation level_
  263.      Each canonical BFD relocation record contains a pointer to the
  264.      symbol to relocate to, the offset of the data to relocate, the
  265.      section the data is in, and a pointer to a relocation type
  266.      descriptor. Relocation is performed by passing messages through
  267.      the relocation type descriptor and the symbol pointer. Therefore,
  268.      relocations can be performed on output data using a relocation
  269.      method that is only available in one of the input formats. For
  270.      instance, Oasys provides a byte relocation format.  A relocation
  271.      record requesting this relocation type would point indirectly to a
  272.      routine to perform this, so the relocation may be performed on a
  273.      byte being written to a 68k COFF file, even though 68k COFF has no
  274.      such relocation type.
  275.  
  276. _line numbers_
  277.      Object formats can contain, for debugging purposes, some form of
  278.      mapping between symbols, source line numbers, and addresses in the
  279.      output file.  These addresses have to be relocated along with the
  280.      symbol information.  Each symbol with an associated list of line
  281.      number records points to the first record of the list.  The head
  282.      of a line number list consists of a pointer to the symbol, which
  283.      allows finding out the address of the function whose line number
  284.      is being described. The rest of the list is made up of pairs:
  285.      offsets into the section and line numbers. Any format which can
  286.      simply derive this information can pass it successfully between
  287.      formats (COFF, IEEE and Oasys).
  288.  
  289. 
  290. File: bfd.info,  Node: BFD front end,  Next: BFD back ends,  Prev: Overview,  Up: Top
  291.  
  292. 2 BFD Front End
  293. ***************
  294.  
  295. 2.1 `typedef bfd'
  296. =================
  297.  
  298. A BFD has type `bfd'; objects of this type are the cornerstone of any
  299. application using BFD. Using BFD consists of making references though
  300. the BFD and to data in the BFD.
  301.  
  302.    Here is the structure that defines the type `bfd'.  It contains the
  303. major data about the file and pointers to the rest of the data.
  304.  
  305.  
  306.      struct bfd
  307.      {
  308.        /* A unique identifier of the BFD  */
  309.        unsigned int id;
  310.  
  311.        /* The filename the application opened the BFD with.  */
  312.        const char *filename;
  313.  
  314.        /* A pointer to the target jump table.  */
  315.        const struct bfd_target *xvec;
  316.  
  317.        /* The IOSTREAM, and corresponding IO vector that provide access
  318.           to the file backing the BFD.  */
  319.        void *iostream;
  320.        const struct bfd_iovec *iovec;
  321.  
  322.        /* Is the file descriptor being cached?  That is, can it be closed as
  323.           needed, and re-opened when accessed later?  */
  324.        bfd_boolean cacheable;
  325.  
  326.        /* Marks whether there was a default target specified when the
  327.           BFD was opened. This is used to select which matching algorithm
  328.           to use to choose the back end.  */
  329.        bfd_boolean target_defaulted;
  330.  
  331.        /* The caching routines use these to maintain a
  332.           least-recently-used list of BFDs.  */
  333.        struct bfd *lru_prev, *lru_next;
  334.  
  335.        /* When a file is closed by the caching routines, BFD retains
  336.           state information on the file here...  */
  337.        ufile_ptr where;
  338.  
  339.        /* ... and here: (``once'' means at least once).  */
  340.        bfd_boolean opened_once;
  341.  
  342.        /* Set if we have a locally maintained mtime value, rather than
  343.           getting it from the file each time.  */
  344.        bfd_boolean mtime_set;
  345.  
  346.        /* File modified time, if mtime_set is TRUE.  */
  347.        long mtime;
  348.  
  349.        /* Reserved for an unimplemented file locking extension.  */
  350.        int ifd;
  351.  
  352.        /* The format which belongs to the BFD. (object, core, etc.)  */
  353.        bfd_format format;
  354.  
  355.        /* The direction with which the BFD was opened.  */
  356.        enum bfd_direction
  357.          {
  358.            no_direction = 0,
  359.            read_direction = 1,
  360.            write_direction = 2,
  361.            both_direction = 3
  362.          }
  363.        direction;
  364.  
  365.        /* Format_specific flags.  */
  366.        flagword flags;
  367.  
  368.        /* Currently my_archive is tested before adding origin to
  369.           anything. I believe that this can become always an add of
  370.           origin, with origin set to 0 for non archive files.  */
  371.        ufile_ptr origin;
  372.  
  373.        /* Remember when output has begun, to stop strange things
  374.           from happening.  */
  375.        bfd_boolean output_has_begun;
  376.  
  377.        /* A hash table for section names.  */
  378.        struct bfd_hash_table section_htab;
  379.  
  380.        /* Pointer to linked list of sections.  */
  381.        struct bfd_section *sections;
  382.  
  383.        /* The place where we add to the section list.  */
  384.        struct bfd_section **section_tail;
  385.  
  386.        /* The number of sections.  */
  387.        unsigned int section_count;
  388.  
  389.        /* Stuff only useful for object files:
  390.           The start address.  */
  391.        bfd_vma start_address;
  392.  
  393.        /* Used for input and output.  */
  394.        unsigned int symcount;
  395.  
  396.        /* Symbol table for output BFD (with symcount entries).  */
  397.        struct bfd_symbol  **outsymbols;
  398.  
  399.        /* Used for slurped dynamic symbol tables.  */
  400.        unsigned int dynsymcount;
  401.  
  402.        /* Pointer to structure which contains architecture information.  */
  403.        const struct bfd_arch_info *arch_info;
  404.  
  405.        /* Flag set if symbols from this BFD should not be exported.  */
  406.        bfd_boolean no_export;
  407.  
  408.        /* Stuff only useful for archives.  */
  409.        void *arelt_data;
  410.        struct bfd *my_archive;      /* The containing archive BFD.  */
  411.        struct bfd *next;            /* The next BFD in the archive.  */
  412.        struct bfd *archive_head;    /* The first BFD in the archive.  */
  413.        bfd_boolean has_armap;
  414.  
  415.        /* A chain of BFD structures involved in a link.  */
  416.        struct bfd *link_next;
  417.  
  418.        /* A field used by _bfd_generic_link_add_archive_symbols.  This will
  419.           be used only for archive elements.  */
  420.        int archive_pass;
  421.  
  422.        /* Used by the back end to hold private data.  */
  423.        union
  424.          {
  425.            struct aout_data_struct *aout_data;
  426.            struct artdata *aout_ar_data;
  427.            struct _oasys_data *oasys_obj_data;
  428.            struct _oasys_ar_data *oasys_ar_data;
  429.            struct coff_tdata *coff_obj_data;
  430.            struct pe_tdata *pe_obj_data;
  431.            struct xcoff_tdata *xcoff_obj_data;
  432.            struct ecoff_tdata *ecoff_obj_data;
  433.            struct ieee_data_struct *ieee_data;
  434.            struct ieee_ar_data_struct *ieee_ar_data;
  435.            struct srec_data_struct *srec_data;
  436.            struct ihex_data_struct *ihex_data;
  437.            struct tekhex_data_struct *tekhex_data;
  438.            struct elf_obj_tdata *elf_obj_data;
  439.            struct nlm_obj_tdata *nlm_obj_data;
  440.            struct bout_data_struct *bout_data;
  441.            struct mmo_data_struct *mmo_data;
  442.            struct sun_core_struct *sun_core_data;
  443.            struct sco5_core_struct *sco5_core_data;
  444.            struct trad_core_struct *trad_core_data;
  445.            struct som_data_struct *som_data;
  446.            struct hpux_core_struct *hpux_core_data;
  447.            struct hppabsd_core_struct *hppabsd_core_data;
  448.            struct sgi_core_struct *sgi_core_data;
  449.            struct lynx_core_struct *lynx_core_data;
  450.            struct osf_core_struct *osf_core_data;
  451.            struct cisco_core_struct *cisco_core_data;
  452.            struct versados_data_struct *versados_data;
  453.            struct netbsd_core_struct *netbsd_core_data;
  454.            struct mach_o_data_struct *mach_o_data;
  455.            struct mach_o_fat_data_struct *mach_o_fat_data;
  456.            struct bfd_pef_data_struct *pef_data;
  457.            struct bfd_pef_xlib_data_struct *pef_xlib_data;
  458.            struct bfd_sym_data_struct *sym_data;
  459.            void *any;
  460.          }
  461.        tdata;
  462.  
  463.        /* Used by the application to hold private data.  */
  464.        void *usrdata;
  465.  
  466.        /* Where all the allocated stuff under this BFD goes.  This is a
  467.           struct objalloc *, but we use void * to avoid requiring the inclusion
  468.           of objalloc.h.  */
  469.        void *memory;
  470.      };
  471.  
  472. 2.2 Error reporting
  473. ===================
  474.  
  475. Most BFD functions return nonzero on success (check their individual
  476. documentation for precise semantics).  On an error, they call
  477. `bfd_set_error' to set an error condition that callers can check by
  478. calling `bfd_get_error'.  If that returns `bfd_error_system_call', then
  479. check `errno'.
  480.  
  481.    The easiest way to report a BFD error to the user is to use
  482. `bfd_perror'.
  483.  
  484. 2.2.1 Type `bfd_error_type'
  485. ---------------------------
  486.  
  487. The values returned by `bfd_get_error' are defined by the enumerated
  488. type `bfd_error_type'.
  489.  
  490.  
  491.      typedef enum bfd_error
  492.      {
  493.        bfd_error_no_error = 0,
  494.        bfd_error_system_call,
  495.        bfd_error_invalid_target,
  496.        bfd_error_wrong_format,
  497.        bfd_error_wrong_object_format,
  498.        bfd_error_invalid_operation,
  499.        bfd_error_no_memory,
  500.        bfd_error_no_symbols,
  501.        bfd_error_no_armap,
  502.        bfd_error_no_more_archived_files,
  503.        bfd_error_malformed_archive,
  504.        bfd_error_file_not_recognized,
  505.        bfd_error_file_ambiguously_recognized,
  506.        bfd_error_no_contents,
  507.        bfd_error_nonrepresentable_section,
  508.        bfd_error_no_debug_section,
  509.        bfd_error_bad_value,
  510.        bfd_error_file_truncated,
  511.        bfd_error_file_too_big,
  512.        bfd_error_invalid_error_code
  513.      }
  514.      bfd_error_type;
  515.    
  516. 2.2.1.1 `bfd_get_error'
  517. .......................
  518.  
  519. *Synopsis*
  520.      bfd_error_type bfd_get_error (void);
  521.    *Description*
  522. Return the current BFD error condition.
  523.  
  524. 2.2.1.2 `bfd_set_error'
  525. .......................
  526.  
  527. *Synopsis*
  528.      void bfd_set_error (bfd_error_type error_tag);
  529.    *Description*
  530. Set the BFD error condition to be ERROR_TAG.
  531.  
  532. 2.2.1.3 `bfd_errmsg'
  533. ....................
  534.  
  535. *Synopsis*
  536.      const char *bfd_errmsg (bfd_error_type error_tag);
  537.    *Description*
  538. Return a string describing the error ERROR_TAG, or the system error if
  539. ERROR_TAG is `bfd_error_system_call'.
  540.  
  541. 2.2.1.4 `bfd_perror'
  542. ....................
  543.  
  544. *Synopsis*
  545.      void bfd_perror (const char *message);
  546.    *Description*
  547. Print to the standard error stream a string describing the last BFD
  548. error that occurred, or the last system error if the last BFD error was
  549. a system call failure.  If MESSAGE is non-NULL and non-empty, the error
  550. string printed is preceded by MESSAGE, a colon, and a space.  It is
  551. followed by a newline.
  552.  
  553. 2.2.2 BFD error handler
  554. -----------------------
  555.  
  556. Some BFD functions want to print messages describing the problem.  They
  557. call a BFD error handler function.  This function may be overridden by
  558. the program.
  559.  
  560.    The BFD error handler acts like printf.
  561.  
  562.  
  563.      typedef void (*bfd_error_handler_type) (const char *, ...);
  564.    
  565. 2.2.2.1 `bfd_set_error_handler'
  566. ...............................
  567.  
  568. *Synopsis*
  569.      bfd_error_handler_type bfd_set_error_handler (bfd_error_handler_type);
  570.    *Description*
  571. Set the BFD error handler function.  Returns the previous function.
  572.  
  573. 2.2.2.2 `bfd_set_error_program_name'
  574. ....................................
  575.  
  576. *Synopsis*
  577.      void bfd_set_error_program_name (const char *);
  578.    *Description*
  579. Set the program name to use when printing a BFD error.  This is printed
  580. before the error message followed by a colon and space.  The string
  581. must not be changed after it is passed to this function.
  582.  
  583. 2.2.2.3 `bfd_get_error_handler'
  584. ...............................
  585.  
  586. *Synopsis*
  587.      bfd_error_handler_type bfd_get_error_handler (void);
  588.    *Description*
  589. Return the BFD error handler function.
  590.  
  591. 2.3 Symbols
  592. ===========
  593.  
  594. 2.3.0.1 `bfd_get_reloc_upper_bound'
  595. ...................................
  596.  
  597. *Synopsis*
  598.      long bfd_get_reloc_upper_bound (bfd *abfd, asection *sect);
  599.    *Description*
  600. Return the number of bytes required to store the relocation information
  601. associated with section SECT attached to bfd ABFD.  If an error occurs,
  602. return -1.
  603.  
  604. 2.3.0.2 `bfd_canonicalize_reloc'
  605. ................................
  606.  
  607. *Synopsis*
  608.      long bfd_canonicalize_reloc
  609.         (bfd *abfd, asection *sec, arelent **loc, asymbol **syms);
  610.    *Description*
  611. Call the back end associated with the open BFD ABFD and translate the
  612. external form of the relocation information attached to SEC into the
  613. internal canonical form.  Place the table into memory at LOC, which has
  614. been preallocated, usually by a call to `bfd_get_reloc_upper_bound'.
  615. Returns the number of relocs, or -1 on error.
  616.  
  617.    The SYMS table is also needed for horrible internal magic reasons.
  618.  
  619. 2.3.0.3 `bfd_set_reloc'
  620. .......................
  621.  
  622. *Synopsis*
  623.      void bfd_set_reloc
  624.         (bfd *abfd, asection *sec, arelent **rel, unsigned int count);
  625.    *Description*
  626. Set the relocation pointer and count within section SEC to the values
  627. REL and COUNT.  The argument ABFD is ignored.
  628.  
  629. 2.3.0.4 `bfd_set_file_flags'
  630. ............................
  631.  
  632. *Synopsis*
  633.      bfd_boolean bfd_set_file_flags (bfd *abfd, flagword flags);
  634.    *Description*
  635. Set the flag word in the BFD ABFD to the value FLAGS.
  636.  
  637.    Possible errors are:
  638.    * `bfd_error_wrong_format' - The target bfd was not of object format.
  639.  
  640.    * `bfd_error_invalid_operation' - The target bfd was open for
  641.      reading.
  642.  
  643.    * `bfd_error_invalid_operation' - The flag word contained a bit
  644.      which was not applicable to the type of file.  E.g., an attempt
  645.      was made to set the `D_PAGED' bit on a BFD format which does not
  646.      support demand paging.
  647.  
  648. 2.3.0.5 `bfd_get_arch_size'
  649. ...........................
  650.  
  651. *Synopsis*
  652.      int bfd_get_arch_size (bfd *abfd);
  653.    *Description*
  654. Returns the architecture address size, in bits, as determined by the
  655. object file's format.  For ELF, this information is included in the
  656. header.
  657.  
  658.    *Returns*
  659. Returns the arch size in bits if known, `-1' otherwise.
  660.  
  661. 2.3.0.6 `bfd_get_sign_extend_vma'
  662. .................................
  663.  
  664. *Synopsis*
  665.      int bfd_get_sign_extend_vma (bfd *abfd);
  666.    *Description*
  667. Indicates if the target architecture "naturally" sign extends an
  668. address.  Some architectures implicitly sign extend address values when
  669. they are converted to types larger than the size of an address.  For
  670. instance, bfd_get_start_address() will return an address sign extended
  671. to fill a bfd_vma when this is the case.
  672.  
  673.    *Returns*
  674. Returns `1' if the target architecture is known to sign extend
  675. addresses, `0' if the target architecture is known to not sign extend
  676. addresses, and `-1' otherwise.
  677.  
  678. 2.3.0.7 `bfd_set_start_address'
  679. ...............................
  680.  
  681. *Synopsis*
  682.      bfd_boolean bfd_set_start_address (bfd *abfd, bfd_vma vma);
  683.    *Description*
  684. Make VMA the entry point of output BFD ABFD.
  685.  
  686.    *Returns*
  687. Returns `TRUE' on success, `FALSE' otherwise.
  688.  
  689. 2.3.0.8 `bfd_get_gp_size'
  690. .........................
  691.  
  692. *Synopsis*
  693.      unsigned int bfd_get_gp_size (bfd *abfd);
  694.    *Description*
  695. Return the maximum size of objects to be optimized using the GP
  696. register under MIPS ECOFF.  This is typically set by the `-G' argument
  697. to the compiler, assembler or linker.
  698.  
  699. 2.3.0.9 `bfd_set_gp_size'
  700. .........................
  701.  
  702. *Synopsis*
  703.      void bfd_set_gp_size (bfd *abfd, unsigned int i);
  704.    *Description*
  705. Set the maximum size of objects to be optimized using the GP register
  706. under ECOFF or MIPS ELF.  This is typically set by the `-G' argument to
  707. the compiler, assembler or linker.
  708.  
  709. 2.3.0.10 `bfd_scan_vma'
  710. .......................
  711.  
  712. *Synopsis*
  713.      bfd_vma bfd_scan_vma (const char *string, const char **end, int base);
  714.    *Description*
  715. Convert, like `strtoul', a numerical expression STRING into a `bfd_vma'
  716. integer, and return that integer.  (Though without as many bells and
  717. whistles as `strtoul'.)  The expression is assumed to be unsigned
  718. (i.e., positive).  If given a BASE, it is used as the base for
  719. conversion.  A base of 0 causes the function to interpret the string in
  720. hex if a leading "0x" or "0X" is found, otherwise in octal if a leading
  721. zero is found, otherwise in decimal.
  722.  
  723.    If the value would overflow, the maximum `bfd_vma' value is returned.
  724.  
  725. 2.3.0.11 `bfd_copy_private_header_data'
  726. .......................................
  727.  
  728. *Synopsis*
  729.      bfd_boolean bfd_copy_private_header_data (bfd *ibfd, bfd *obfd);
  730.    *Description*
  731. Copy private BFD header information from the BFD IBFD to the the BFD
  732. OBFD.  This copies information that may require sections to exist, but
  733. does not require symbol tables.  Return `true' on success, `false' on
  734. error.  Possible error returns are:
  735.  
  736.    * `bfd_error_no_memory' - Not enough memory exists to create private
  737.      data for OBFD.
  738.  
  739.      #define bfd_copy_private_header_data(ibfd, obfd) \
  740.           BFD_SEND (obfd, _bfd_copy_private_header_data, \
  741.                     (ibfd, obfd))
  742.  
  743. 2.3.0.12 `bfd_copy_private_bfd_data'
  744. ....................................
  745.  
  746. *Synopsis*
  747.      bfd_boolean bfd_copy_private_bfd_data (bfd *ibfd, bfd *obfd);
  748.    *Description*
  749. Copy private BFD information from the BFD IBFD to the the BFD OBFD.
  750. Return `TRUE' on success, `FALSE' on error.  Possible error returns are:
  751.  
  752.    * `bfd_error_no_memory' - Not enough memory exists to create private
  753.      data for OBFD.
  754.  
  755.      #define bfd_copy_private_bfd_data(ibfd, obfd) \
  756.           BFD_SEND (obfd, _bfd_copy_private_bfd_data, \
  757.                     (ibfd, obfd))
  758.  
  759. 2.3.0.13 `bfd_merge_private_bfd_data'
  760. .....................................
  761.  
  762. *Synopsis*
  763.      bfd_boolean bfd_merge_private_bfd_data (bfd *ibfd, bfd *obfd);
  764.    *Description*
  765. Merge private BFD information from the BFD IBFD to the the output file
  766. BFD OBFD when linking.  Return `TRUE' on success, `FALSE' on error.
  767. Possible error returns are:
  768.  
  769.    * `bfd_error_no_memory' - Not enough memory exists to create private
  770.      data for OBFD.
  771.  
  772.      #define bfd_merge_private_bfd_data(ibfd, obfd) \
  773.           BFD_SEND (obfd, _bfd_merge_private_bfd_data, \
  774.                     (ibfd, obfd))
  775.  
  776. 2.3.0.14 `bfd_set_private_flags'
  777. ................................
  778.  
  779. *Synopsis*
  780.      bfd_boolean bfd_set_private_flags (bfd *abfd, flagword flags);
  781.    *Description*
  782. Set private BFD flag information in the BFD ABFD.  Return `TRUE' on
  783. success, `FALSE' on error.  Possible error returns are:
  784.  
  785.    * `bfd_error_no_memory' - Not enough memory exists to create private
  786.      data for OBFD.
  787.  
  788.      #define bfd_set_private_flags(abfd, flags) \
  789.           BFD_SEND (abfd, _bfd_set_private_flags, (abfd, flags))
  790.  
  791. 2.3.0.15 `Other functions'
  792. ..........................
  793.  
  794. *Description*
  795. The following functions exist but have not yet been documented.
  796.      #define bfd_sizeof_headers(abfd, reloc) \
  797.             BFD_SEND (abfd, _bfd_sizeof_headers, (abfd, reloc))
  798.  
  799.      #define bfd_find_nearest_line(abfd, sec, syms, off, file, func, line) \
  800.             BFD_SEND (abfd, _bfd_find_nearest_line, \
  801.                       (abfd, sec, syms, off, file, func, line))
  802.  
  803.      #define bfd_debug_info_start(abfd) \
  804.             BFD_SEND (abfd, _bfd_debug_info_start, (abfd))
  805.  
  806.      #define bfd_debug_info_end(abfd) \
  807.             BFD_SEND (abfd, _bfd_debug_info_end, (abfd))
  808.  
  809.      #define bfd_debug_info_accumulate(abfd, section) \
  810.             BFD_SEND (abfd, _bfd_debug_info_accumulate, (abfd, section))
  811.  
  812.      #define bfd_stat_arch_elt(abfd, stat) \
  813.             BFD_SEND (abfd, _bfd_stat_arch_elt,(abfd, stat))
  814.  
  815.      #define bfd_update_armap_timestamp(abfd) \
  816.             BFD_SEND (abfd, _bfd_update_armap_timestamp, (abfd))
  817.  
  818.      #define bfd_set_arch_mach(abfd, arch, mach)\
  819.             BFD_SEND ( abfd, _bfd_set_arch_mach, (abfd, arch, mach))
  820.  
  821.      #define bfd_relax_section(abfd, section, link_info, again) \
  822.             BFD_SEND (abfd, _bfd_relax_section, (abfd, section, link_info, again))
  823.  
  824.      #define bfd_gc_sections(abfd, link_info) \
  825.             BFD_SEND (abfd, _bfd_gc_sections, (abfd, link_info))
  826.  
  827.      #define bfd_merge_sections(abfd, link_info) \
  828.             BFD_SEND (abfd, _bfd_merge_sections, (abfd, link_info))
  829.  
  830.      #define bfd_is_group_section(abfd, sec) \
  831.             BFD_SEND (abfd, _bfd_is_group_section, (abfd, sec))
  832.  
  833.      #define bfd_discard_group(abfd, sec) \
  834.             BFD_SEND (abfd, _bfd_discard_group, (abfd, sec))
  835.  
  836.      #define bfd_link_hash_table_create(abfd) \
  837.             BFD_SEND (abfd, _bfd_link_hash_table_create, (abfd))
  838.  
  839.      #define bfd_link_hash_table_free(abfd, hash) \
  840.             BFD_SEND (abfd, _bfd_link_hash_table_free, (hash))
  841.  
  842.      #define bfd_link_add_symbols(abfd, info) \
  843.             BFD_SEND (abfd, _bfd_link_add_symbols, (abfd, info))
  844.  
  845.      #define bfd_link_just_syms(abfd, sec, info) \
  846.             BFD_SEND (abfd, _bfd_link_just_syms, (sec, info))
  847.  
  848.      #define bfd_final_link(abfd, info) \
  849.             BFD_SEND (abfd, _bfd_final_link, (abfd, info))
  850.  
  851.      #define bfd_free_cached_info(abfd) \
  852.             BFD_SEND (abfd, _bfd_free_cached_info, (abfd))
  853.  
  854.      #define bfd_get_dynamic_symtab_upper_bound(abfd) \
  855.             BFD_SEND (abfd, _bfd_get_dynamic_symtab_upper_bound, (abfd))
  856.  
  857.      #define bfd_print_private_bfd_data(abfd, file)\
  858.             BFD_SEND (abfd, _bfd_print_private_bfd_data, (abfd, file))
  859.  
  860.      #define bfd_canonicalize_dynamic_symtab(abfd, asymbols) \
  861.             BFD_SEND (abfd, _bfd_canonicalize_dynamic_symtab, (abfd, asymbols))
  862.  
  863.      #define bfd_get_synthetic_symtab(abfd, count, syms, dyncount, dynsyms, ret) \
  864.             BFD_SEND (abfd, _bfd_get_synthetic_symtab, (abfd, count, syms, \
  865.                                                         dyncount, dynsyms, ret))
  866.  
  867.      #define bfd_get_dynamic_reloc_upper_bound(abfd) \
  868.             BFD_SEND (abfd, _bfd_get_dynamic_reloc_upper_bound, (abfd))
  869.  
  870.      #define bfd_canonicalize_dynamic_reloc(abfd, arels, asyms) \
  871.             BFD_SEND (abfd, _bfd_canonicalize_dynamic_reloc, (abfd, arels, asyms))
  872.  
  873.      extern bfd_byte *bfd_get_relocated_section_contents
  874.        (bfd *, struct bfd_link_info *, struct bfd_link_order *, bfd_byte *,
  875.         bfd_boolean, asymbol **);
  876.  
  877. 2.3.0.16 `bfd_alt_mach_code'
  878. ............................
  879.  
  880. *Synopsis*
  881.      bfd_boolean bfd_alt_mach_code (bfd *abfd, int alternative);
  882.    *Description*
  883. When more than one machine code number is available for the same
  884. machine type, this function can be used to switch between the preferred
  885. one (alternative == 0) and any others.  Currently, only ELF supports
  886. this feature, with up to two alternate machine codes.
  887.  
  888.      struct bfd_preserve
  889.      {
  890.        void *marker;
  891.        void *tdata;
  892.        flagword flags;
  893.        const struct bfd_arch_info *arch_info;
  894.        struct bfd_section *sections;
  895.        struct bfd_section **section_tail;
  896.        unsigned int section_count;
  897.        struct bfd_hash_table section_htab;
  898.      };
  899.    
  900. 2.3.0.17 `bfd_preserve_save'
  901. ............................
  902.  
  903. *Synopsis*
  904.      bfd_boolean bfd_preserve_save (bfd *, struct bfd_preserve *);
  905.    *Description*
  906. When testing an object for compatibility with a particular target
  907. back-end, the back-end object_p function needs to set up certain fields
  908. in the bfd on successfully recognizing the object.  This typically
  909. happens in a piecemeal fashion, with failures possible at many points.
  910. On failure, the bfd is supposed to be restored to its initial state,
  911. which is virtually impossible.  However, restoring a subset of the bfd
  912. state works in practice.  This function stores the subset and
  913. reinitializes the bfd.
  914.  
  915. 2.3.0.18 `bfd_preserve_restore'
  916. ...............................
  917.  
  918. *Synopsis*
  919.      void bfd_preserve_restore (bfd *, struct bfd_preserve *);
  920.    *Description*
  921. This function restores bfd state saved by bfd_preserve_save.  If MARKER
  922. is non-NULL in struct bfd_preserve then that block and all subsequently
  923. bfd_alloc'd memory is freed.
  924.  
  925. 2.3.0.19 `bfd_preserve_finish'
  926. ..............................
  927.  
  928. *Synopsis*
  929.      void bfd_preserve_finish (bfd *, struct bfd_preserve *);
  930.    *Description*
  931. This function should be called when the bfd state saved by
  932. bfd_preserve_save is no longer needed.  ie. when the back-end object_p
  933. function returns with success.
  934.  
  935. 2.3.0.20 `struct bfd_iovec'
  936. ...........................
  937.  
  938. *Description*
  939. The `struct bfd_iovec' contains the internal file I/O class.  Each
  940. `BFD' has an instance of this class and all file I/O is routed through
  941. it (it is assumed that the instance implements all methods listed
  942. below).
  943.      struct bfd_iovec
  944.      {
  945.        /* To avoid problems with macros, a "b" rather than "f"
  946.           prefix is prepended to each method name.  */
  947.        /* Attempt to read/write NBYTES on ABFD's IOSTREAM storing/fetching
  948.           bytes starting at PTR.  Return the number of bytes actually
  949.           transfered (a read past end-of-file returns less than NBYTES),
  950.           or -1 (setting `bfd_error') if an error occurs.  */
  951.        file_ptr (*bread) (struct bfd *abfd, void *ptr, file_ptr nbytes);
  952.        file_ptr (*bwrite) (struct bfd *abfd, const void *ptr,
  953.                            file_ptr nbytes);
  954.        /* Return the current IOSTREAM file offset, or -1 (setting `bfd_error'
  955.           if an error occurs.  */
  956.        file_ptr (*btell) (struct bfd *abfd);
  957.        /* For the following, on successful completion a value of 0 is returned.
  958.           Otherwise, a value of -1 is returned (and  `bfd_error' is set).  */
  959.        int (*bseek) (struct bfd *abfd, file_ptr offset, int whence);
  960.        int (*bclose) (struct bfd *abfd);
  961.        int (*bflush) (struct bfd *abfd);
  962.        int (*bstat) (struct bfd *abfd, struct stat *sb);
  963.      };
  964.  
  965. 2.3.0.21 `bfd_get_mtime'
  966. ........................
  967.  
  968. *Synopsis*
  969.      long bfd_get_mtime (bfd *abfd);
  970.    *Description*
  971. Return the file modification time (as read from the file system, or
  972. from the archive header for archive members).
  973.  
  974. 2.3.0.22 `bfd_get_size'
  975. .......................
  976.  
  977. *Synopsis*
  978.      long bfd_get_size (bfd *abfd);
  979.    *Description*
  980. Return the file size (as read from file system) for the file associated
  981. with BFD ABFD.
  982.  
  983.    The initial motivation for, and use of, this routine is not so we
  984. can get the exact size of the object the BFD applies to, since that
  985. might not be generally possible (archive members for example).  It
  986. would be ideal if someone could eventually modify it so that such
  987. results were guaranteed.
  988.  
  989.    Instead, we want to ask questions like "is this NNN byte sized
  990. object I'm about to try read from file offset YYY reasonable?"  As as
  991. example of where we might do this, some object formats use string
  992. tables for which the first `sizeof (long)' bytes of the table contain
  993. the size of the table itself, including the size bytes.  If an
  994. application tries to read what it thinks is one of these string tables,
  995. without some way to validate the size, and for some reason the size is
  996. wrong (byte swapping error, wrong location for the string table, etc.),
  997. the only clue is likely to be a read error when it tries to read the
  998. table, or a "virtual memory exhausted" error when it tries to allocate
  999. 15 bazillon bytes of space for the 15 bazillon byte table it is about
  1000. to read.  This function at least allows us to answer the question, "is
  1001. the size reasonable?".
  1002.  
  1003. * Menu:
  1004.  
  1005. * Memory Usage::
  1006. * Initialization::
  1007. * Sections::
  1008. * Symbols::
  1009. * Archives::
  1010. * Formats::
  1011. * Relocations::
  1012. * Core Files::
  1013. * Targets::
  1014. * Architectures::
  1015. * Opening and Closing::
  1016. * Internal::
  1017. * File Caching::
  1018. * Linker Functions::
  1019. * Hash Tables::
  1020.  
  1021. 
  1022. File: bfd.info,  Node: Memory Usage,  Next: Initialization,  Prev: BFD front end,  Up: BFD front end
  1023.  
  1024. 2.4 Memory Usage
  1025. ================
  1026.  
  1027. BFD keeps all of its internal structures in obstacks. There is one
  1028. obstack per open BFD file, into which the current state is stored. When
  1029. a BFD is closed, the obstack is deleted, and so everything which has
  1030. been allocated by BFD for the closing file is thrown away.
  1031.  
  1032.    BFD does not free anything created by an application, but pointers
  1033. into `bfd' structures become invalid on a `bfd_close'; for example,
  1034. after a `bfd_close' the vector passed to `bfd_canonicalize_symtab' is
  1035. still around, since it has been allocated by the application, but the
  1036. data that it pointed to are lost.
  1037.  
  1038.    The general rule is to not close a BFD until all operations dependent
  1039. upon data from the BFD have been completed, or all the data from within
  1040. the file has been copied. To help with the management of memory, there
  1041. is a function (`bfd_alloc_size') which returns the number of bytes in
  1042. obstacks associated with the supplied BFD. This could be used to select
  1043. the greediest open BFD, close it to reclaim the memory, perform some
  1044. operation and reopen the BFD again, to get a fresh copy of the data
  1045. structures.
  1046.  
  1047. 
  1048. File: bfd.info,  Node: Initialization,  Next: Sections,  Prev: Memory Usage,  Up: BFD front end
  1049.  
  1050. 2.5 Initialization
  1051. ==================
  1052.  
  1053. These are the functions that handle initializing a BFD.
  1054.  
  1055. 2.5.0.1 `bfd_init'
  1056. ..................
  1057.  
  1058. *Synopsis*
  1059.      void bfd_init (void);
  1060.    *Description*
  1061. This routine must be called before any other BFD function to initialize
  1062. magical internal data structures.
  1063.  
  1064. 
  1065. File: bfd.info,  Node: Sections,  Next: Symbols,  Prev: Initialization,  Up: BFD front end
  1066.  
  1067. 2.6 Sections
  1068. ============
  1069.  
  1070. The raw data contained within a BFD is maintained through the section
  1071. abstraction.  A single BFD may have any number of sections.  It keeps
  1072. hold of them by pointing to the first; each one points to the next in
  1073. the list.
  1074.  
  1075.    Sections are supported in BFD in `section.c'.
  1076.  
  1077. * Menu:
  1078.  
  1079. * Section Input::
  1080. * Section Output::
  1081. * typedef asection::
  1082. * section prototypes::
  1083.  
  1084. 
  1085. File: bfd.info,  Node: Section Input,  Next: Section Output,  Prev: Sections,  Up: Sections
  1086.  
  1087. 2.6.1 Section input
  1088. -------------------
  1089.  
  1090. When a BFD is opened for reading, the section structures are created
  1091. and attached to the BFD.
  1092.  
  1093.    Each section has a name which describes the section in the outside
  1094. world--for example, `a.out' would contain at least three sections,
  1095. called `.text', `.data' and `.bss'.
  1096.  
  1097.    Names need not be unique; for example a COFF file may have several
  1098. sections named `.data'.
  1099.  
  1100.    Sometimes a BFD will contain more than the "natural" number of
  1101. sections. A back end may attach other sections containing constructor
  1102. data, or an application may add a section (using `bfd_make_section') to
  1103. the sections attached to an already open BFD. For example, the linker
  1104. creates an extra section `COMMON' for each input file's BFD to hold
  1105. information about common storage.
  1106.  
  1107.    The raw data is not necessarily read in when the section descriptor
  1108. is created. Some targets may leave the data in place until a
  1109. `bfd_get_section_contents' call is made. Other back ends may read in
  1110. all the data at once.  For example, an S-record file has to be read
  1111. once to determine the size of the data. An IEEE-695 file doesn't
  1112. contain raw data in sections, but data and relocation expressions
  1113. intermixed, so the data area has to be parsed to get out the data and
  1114. relocations.
  1115.  
  1116. 
  1117. File: bfd.info,  Node: Section Output,  Next: typedef asection,  Prev: Section Input,  Up: Sections
  1118.  
  1119. 2.6.2 Section output
  1120. --------------------
  1121.  
  1122. To write a new object style BFD, the various sections to be written
  1123. have to be created. They are attached to the BFD in the same way as
  1124. input sections; data is written to the sections using
  1125. `bfd_set_section_contents'.
  1126.  
  1127.    Any program that creates or combines sections (e.g., the assembler
  1128. and linker) must use the `asection' fields `output_section' and
  1129. `output_offset' to indicate the file sections to which each section
  1130. must be written.  (If the section is being created from scratch,
  1131. `output_section' should probably point to the section itself and
  1132. `output_offset' should probably be zero.)
  1133.  
  1134.    The data to be written comes from input sections attached (via
  1135. `output_section' pointers) to the output sections.  The output section
  1136. structure can be considered a filter for the input section: the output
  1137. section determines the vma of the output data and the name, but the
  1138. input section determines the offset into the output section of the data
  1139. to be written.
  1140.  
  1141.    E.g., to create a section "O", starting at 0x100, 0x123 long,
  1142. containing two subsections, "A" at offset 0x0 (i.e., at vma 0x100) and
  1143. "B" at offset 0x20 (i.e., at vma 0x120) the `asection' structures would
  1144. look like:
  1145.  
  1146.         section name          "A"
  1147.           output_offset   0x00
  1148.           size            0x20
  1149.           output_section ----------->  section name    "O"
  1150.                                   |    vma             0x100
  1151.         section name          "B" |    size            0x123
  1152.           output_offset   0x20    |
  1153.           size            0x103   |
  1154.           output_section  --------|
  1155.  
  1156. 2.6.3 Link orders
  1157. -----------------
  1158.  
  1159. The data within a section is stored in a "link_order".  These are much
  1160. like the fixups in `gas'.  The link_order abstraction allows a section
  1161. to grow and shrink within itself.
  1162.  
  1163.    A link_order knows how big it is, and which is the next link_order
  1164. and where the raw data for it is; it also points to a list of
  1165. relocations which apply to it.
  1166.  
  1167.    The link_order is used by the linker to perform relaxing on final
  1168. code.  The compiler creates code which is as big as necessary to make
  1169. it work without relaxing, and the user can select whether to relax.
  1170. Sometimes relaxing takes a lot of time.  The linker runs around the
  1171. relocations to see if any are attached to data which can be shrunk, if
  1172. so it does it on a link_order by link_order basis.
  1173.  
  1174. 
  1175. File: bfd.info,  Node: typedef asection,  Next: section prototypes,  Prev: Section Output,  Up: Sections
  1176.  
  1177. 2.6.4 typedef asection
  1178. ----------------------
  1179.  
  1180. Here is the section structure:
  1181.  
  1182.  
  1183.      typedef struct bfd_section
  1184.      {
  1185.        /* The name of the section; the name isn't a copy, the pointer is
  1186.           the same as that passed to bfd_make_section.  */
  1187.        const char *name;
  1188.  
  1189.        /* A unique sequence number.  */
  1190.        int id;
  1191.  
  1192.        /* Which section in the bfd; 0..n-1 as sections are created in a bfd.  */
  1193.        int index;
  1194.  
  1195.        /* The next section in the list belonging to the BFD, or NULL.  */
  1196.        struct bfd_section *next;
  1197.  
  1198.        /* The field flags contains attributes of the section. Some
  1199.           flags are read in from the object file, and some are
  1200.           synthesized from other information.  */
  1201.        flagword flags;
  1202.  
  1203.      #define SEC_NO_FLAGS   0x000
  1204.  
  1205.        /* Tells the OS to allocate space for this section when loading.
  1206.           This is clear for a section containing debug information only.  */
  1207.      #define SEC_ALLOC      0x001
  1208.  
  1209.        /* Tells the OS to load the section from the file when loading.
  1210.           This is clear for a .bss section.  */
  1211.      #define SEC_LOAD       0x002
  1212.  
  1213.        /* The section contains data still to be relocated, so there is
  1214.           some relocation information too.  */
  1215.      #define SEC_RELOC      0x004
  1216.  
  1217.        /* A signal to the OS that the section contains read only data.  */
  1218.      #define SEC_READONLY   0x008
  1219.  
  1220.        /* The section contains code only.  */
  1221.      #define SEC_CODE       0x010
  1222.  
  1223.        /* The section contains data only.  */
  1224.      #define SEC_DATA       0x020
  1225.  
  1226.        /* The section will reside in ROM.  */
  1227.      #define SEC_ROM        0x040
  1228.  
  1229.        /* The section contains constructor information. This section
  1230.           type is used by the linker to create lists of constructors and
  1231.           destructors used by `g++'. When a back end sees a symbol
  1232.           which should be used in a constructor list, it creates a new
  1233.           section for the type of name (e.g., `__CTOR_LIST__'), attaches
  1234.           the symbol to it, and builds a relocation. To build the lists
  1235.           of constructors, all the linker has to do is catenate all the
  1236.           sections called `__CTOR_LIST__' and relocate the data
  1237.           contained within - exactly the operations it would peform on
  1238.           standard data.  */
  1239.      #define SEC_CONSTRUCTOR 0x080
  1240.  
  1241.        /* The section has contents - a data section could be
  1242.           `SEC_ALLOC' | `SEC_HAS_CONTENTS'; a debug section could be
  1243.           `SEC_HAS_CONTENTS'  */
  1244.      #define SEC_HAS_CONTENTS 0x100
  1245.  
  1246.        /* An instruction to the linker to not output the section
  1247.           even if it has information which would normally be written.  */
  1248.      #define SEC_NEVER_LOAD 0x200
  1249.  
  1250.        /* The section contains thread local data.  */
  1251.      #define SEC_THREAD_LOCAL 0x400
  1252.  
  1253.        /* The section has GOT references.  This flag is only for the
  1254.           linker, and is currently only used by the elf32-hppa back end.
  1255.           It will be set if global offset table references were detected
  1256.           in this section, which indicate to the linker that the section
  1257.           contains PIC code, and must be handled specially when doing a
  1258.           static link.  */
  1259.      #define SEC_HAS_GOT_REF 0x800
  1260.  
  1261.        /* The section contains common symbols (symbols may be defined
  1262.           multiple times, the value of a symbol is the amount of
  1263.           space it requires, and the largest symbol value is the one
  1264.           used).  Most targets have exactly one of these (which we
  1265.           translate to bfd_com_section_ptr), but ECOFF has two.  */
  1266.      #define SEC_IS_COMMON 0x1000
  1267.  
  1268.        /* The section contains only debugging information.  For
  1269.           example, this is set for ELF .debug and .stab sections.
  1270.           strip tests this flag to see if a section can be
  1271.           discarded.  */
  1272.      #define SEC_DEBUGGING 0x2000
  1273.  
  1274.        /* The contents of this section are held in memory pointed to
  1275.           by the contents field.  This is checked by bfd_get_section_contents,
  1276.           and the data is retrieved from memory if appropriate.  */
  1277.      #define SEC_IN_MEMORY 0x4000
  1278.  
  1279.        /* The contents of this section are to be excluded by the
  1280.           linker for executable and shared objects unless those
  1281.           objects are to be further relocated.  */
  1282.      #define SEC_EXCLUDE 0x8000
  1283.  
  1284.        /* The contents of this section are to be sorted based on the sum of
  1285.           the symbol and addend values specified by the associated relocation
  1286.           entries.  Entries without associated relocation entries will be
  1287.           appended to the end of the section in an unspecified order.  */
  1288.      #define SEC_SORT_ENTRIES 0x10000
  1289.  
  1290.        /* When linking, duplicate sections of the same name should be
  1291.           discarded, rather than being combined into a single section as
  1292.           is usually done.  This is similar to how common symbols are
  1293.           handled.  See SEC_LINK_DUPLICATES below.  */
  1294.      #define SEC_LINK_ONCE 0x20000
  1295.  
  1296.        /* If SEC_LINK_ONCE is set, this bitfield describes how the linker
  1297.           should handle duplicate sections.  */
  1298.      #define SEC_LINK_DUPLICATES 0x40000
  1299.  
  1300.        /* This value for SEC_LINK_DUPLICATES means that duplicate
  1301.           sections with the same name should simply be discarded.  */
  1302.      #define SEC_LINK_DUPLICATES_DISCARD 0x0
  1303.  
  1304.        /* This value for SEC_LINK_DUPLICATES means that the linker
  1305.           should warn if there are any duplicate sections, although
  1306.           it should still only link one copy.  */
  1307.      #define SEC_LINK_DUPLICATES_ONE_ONLY 0x80000
  1308.  
  1309.        /* This value for SEC_LINK_DUPLICATES means that the linker
  1310.           should warn if any duplicate sections are a different size.  */
  1311.      #define SEC_LINK_DUPLICATES_SAME_SIZE 0x100000
  1312.  
  1313.        /* This value for SEC_LINK_DUPLICATES means that the linker
  1314.           should warn if any duplicate sections contain different
  1315.           contents.  */
  1316.      #define SEC_LINK_DUPLICATES_SAME_CONTENTS \
  1317.        (SEC_LINK_DUPLICATES_ONE_ONLY | SEC_LINK_DUPLICATES_SAME_SIZE)
  1318.  
  1319.        /* This section was created by the linker as part of dynamic
  1320.           relocation or other arcane processing.  It is skipped when
  1321.           going through the first-pass output, trusting that someone
  1322.           else up the line will take care of it later.  */
  1323.      #define SEC_LINKER_CREATED 0x200000
  1324.  
  1325.        /* This section should not be subject to garbage collection.  */
  1326.      #define SEC_KEEP 0x400000
  1327.  
  1328.        /* This section contains "short" data, and should be placed
  1329.           "near" the GP.  */
  1330.      #define SEC_SMALL_DATA 0x800000
  1331.  
  1332.        /* Attempt to merge identical entities in the section.
  1333.           Entity size is given in the entsize field.  */
  1334.      #define SEC_MERGE 0x1000000
  1335.  
  1336.        /* If given with SEC_MERGE, entities to merge are zero terminated
  1337.           strings where entsize specifies character size instead of fixed
  1338.           size entries.  */
  1339.      #define SEC_STRINGS 0x2000000
  1340.  
  1341.        /* This section contains data about section groups.  */
  1342.      #define SEC_GROUP 0x4000000
  1343.  
  1344.        /* The section is a COFF shared library section.  This flag is
  1345.           only for the linker.  If this type of section appears in
  1346.           the input file, the linker must copy it to the output file
  1347.           without changing the vma or size.  FIXME: Although this
  1348.           was originally intended to be general, it really is COFF
  1349.           specific (and the flag was renamed to indicate this).  It
  1350.           might be cleaner to have some more general mechanism to
  1351.           allow the back end to control what the linker does with
  1352.           sections.  */
  1353.      #define SEC_COFF_SHARED_LIBRARY 0x10000000
  1354.  
  1355.        /* This section contains data which may be shared with other
  1356.           executables or shared objects. This is for COFF only.  */
  1357.      #define SEC_COFF_SHARED 0x20000000
  1358.  
  1359.        /* When a section with this flag is being linked, then if the size of
  1360.           the input section is less than a page, it should not cross a page
  1361.           boundary.  If the size of the input section is one page or more,
  1362.           it should be aligned on a page boundary.  This is for TI
  1363.           TMS320C54X only.  */
  1364.      #define SEC_TIC54X_BLOCK 0x40000000
  1365.  
  1366.        /* Conditionally link this section; do not link if there are no
  1367.           references found to any symbol in the section.  This is for TI
  1368.           TMS320C54X only.  */
  1369.      #define SEC_TIC54X_CLINK 0x80000000
  1370.  
  1371.        /*  End of section flags.  */
  1372.  
  1373.        /* Some internal packed boolean fields.  */
  1374.  
  1375.        /* See the vma field.  */
  1376.        unsigned int user_set_vma : 1;
  1377.  
  1378.        /* A mark flag used by some of the linker backends.  */
  1379.        unsigned int linker_mark : 1;
  1380.  
  1381.        /* Another mark flag used by some of the linker backends.  Set for
  1382.           output sections that have an input section.  */
  1383.        unsigned int linker_has_input : 1;
  1384.  
  1385.        /* A mark flag used by some linker backends for garbage collection.  */
  1386.        unsigned int gc_mark : 1;
  1387.  
  1388.        /* The following flags are used by the ELF linker. */
  1389.  
  1390.        /* Mark sections which have been allocated to segments.  */
  1391.        unsigned int segment_mark : 1;
  1392.  
  1393.        /* Type of sec_info information.  */
  1394.        unsigned int sec_info_type:3;
  1395.      #define ELF_INFO_TYPE_NONE      0
  1396.      #define ELF_INFO_TYPE_STABS     1
  1397.      #define ELF_INFO_TYPE_MERGE     2
  1398.      #define ELF_INFO_TYPE_EH_FRAME  3
  1399.      #define ELF_INFO_TYPE_JUST_SYMS 4
  1400.  
  1401.        /* Nonzero if this section uses RELA relocations, rather than REL.  */
  1402.        unsigned int use_rela_p:1;
  1403.  
  1404.        /* Bits used by various backends.  The generic code doesn't touch
  1405.           these fields.  */
  1406.  
  1407.        /* Nonzero if this section has TLS related relocations.  */
  1408.        unsigned int has_tls_reloc:1;
  1409.  
  1410.        /* Nonzero if this section has a gp reloc.  */
  1411.        unsigned int has_gp_reloc:1;
  1412.  
  1413.        /* Nonzero if this section needs the relax finalize pass.  */
  1414.        unsigned int need_finalize_relax:1;
  1415.  
  1416.        /* Whether relocations have been processed.  */
  1417.        unsigned int reloc_done : 1;
  1418.  
  1419.        /* End of internal packed boolean fields.  */
  1420.  
  1421.        /*  The virtual memory address of the section - where it will be
  1422.            at run time.  The symbols are relocated against this.  The
  1423.            user_set_vma flag is maintained by bfd; if it's not set, the
  1424.            backend can assign addresses (for example, in `a.out', where
  1425.            the default address for `.data' is dependent on the specific
  1426.            target and various flags).  */
  1427.        bfd_vma vma;
  1428.  
  1429.        /*  The load address of the section - where it would be in a
  1430.            rom image; really only used for writing section header
  1431.            information.  */
  1432.        bfd_vma lma;
  1433.  
  1434.        /* The size of the section in octets, as it will be output.
  1435.           Contains a value even if the section has no contents (e.g., the
  1436.           size of `.bss').  */
  1437.        bfd_size_type size;
  1438.  
  1439.        /* For input sections, the original size on disk of the section, in
  1440.           octets.  This field is used by the linker relaxation code.  It is
  1441.           currently only set for sections where the linker relaxation scheme
  1442.           doesn't cache altered section and reloc contents (stabs, eh_frame,
  1443.           SEC_MERGE, some coff relaxing targets), and thus the original size
  1444.           needs to be kept to read the section multiple times.
  1445.           For output sections, rawsize holds the section size calculated on
  1446.           a previous linker relaxation pass.  */
  1447.        bfd_size_type rawsize;
  1448.  
  1449.        /* If this section is going to be output, then this value is the
  1450.           offset in *bytes* into the output section of the first byte in the
  1451.           input section (byte ==> smallest addressable unit on the
  1452.           target).  In most cases, if this was going to start at the
  1453.           100th octet (8-bit quantity) in the output section, this value
  1454.           would be 100.  However, if the target byte size is 16 bits
  1455.           (bfd_octets_per_byte is "2"), this value would be 50.  */
  1456.        bfd_vma output_offset;
  1457.  
  1458.        /* The output section through which to map on output.  */
  1459.        struct bfd_section *output_section;
  1460.  
  1461.        /* The alignment requirement of the section, as an exponent of 2 -
  1462.           e.g., 3 aligns to 2^3 (or 8).  */
  1463.        unsigned int alignment_power;
  1464.  
  1465.        /* If an input section, a pointer to a vector of relocation
  1466.           records for the data in this section.  */
  1467.        struct reloc_cache_entry *relocation;
  1468.  
  1469.        /* If an output section, a pointer to a vector of pointers to
  1470.           relocation records for the data in this section.  */
  1471.        struct reloc_cache_entry **orelocation;
  1472.  
  1473.        /* The number of relocation records in one of the above.  */
  1474.        unsigned reloc_count;
  1475.  
  1476.        /* Information below is back end specific - and not always used
  1477.           or updated.  */
  1478.  
  1479.        /* File position of section data.  */
  1480.        file_ptr filepos;
  1481.  
  1482.        /* File position of relocation info.  */
  1483.        file_ptr rel_filepos;
  1484.  
  1485.        /* File position of line data.  */
  1486.        file_ptr line_filepos;
  1487.  
  1488.        /* Pointer to data for applications.  */
  1489.        void *userdata;
  1490.  
  1491.        /* If the SEC_IN_MEMORY flag is set, this points to the actual
  1492.           contents.  */
  1493.        unsigned char *contents;
  1494.  
  1495.        /* Attached line number information.  */
  1496.        alent *lineno;
  1497.  
  1498.        /* Number of line number records.  */
  1499.        unsigned int lineno_count;
  1500.  
  1501.        /* Entity size for merging purposes.  */
  1502.        unsigned int entsize;
  1503.  
  1504.        /* Points to the kept section if this section is a link-once section,
  1505.           and is discarded.  */
  1506.        struct bfd_section *kept_section;
  1507.  
  1508.        /* When a section is being output, this value changes as more
  1509.           linenumbers are written out.  */
  1510.        file_ptr moving_line_filepos;
  1511.  
  1512.        /* What the section number is in the target world.  */
  1513.        int target_index;
  1514.  
  1515.        void *used_by_bfd;
  1516.  
  1517.        /* If this is a constructor section then here is a list of the
  1518.           relocations created to relocate items within it.  */
  1519.        struct relent_chain *constructor_chain;
  1520.  
  1521.        /* The BFD which owns the section.  */
  1522.        bfd *owner;
  1523.  
  1524.        /* A symbol which points at this section only.  */
  1525.        struct bfd_symbol *symbol;
  1526.        struct bfd_symbol **symbol_ptr_ptr;
  1527.  
  1528.        struct bfd_link_order *link_order_head;
  1529.        struct bfd_link_order *link_order_tail;
  1530.      } asection;
  1531.  
  1532.      /* These sections are global, and are managed by BFD.  The application
  1533.         and target back end are not permitted to change the values in
  1534.         these sections.  New code should use the section_ptr macros rather
  1535.         than referring directly to the const sections.  The const sections
  1536.         may eventually vanish.  */
  1537.      #define BFD_ABS_SECTION_NAME "*ABS*"
  1538.      #define BFD_UND_SECTION_NAME "*UND*"
  1539.      #define BFD_COM_SECTION_NAME "*COM*"
  1540.      #define BFD_IND_SECTION_NAME "*IND*"
  1541.  
  1542.      /* The absolute section.  */
  1543.      extern asection bfd_abs_section;
  1544.      #define bfd_abs_section_ptr ((asection *) &bfd_abs_section)
  1545.      #define bfd_is_abs_section(sec) ((sec) == bfd_abs_section_ptr)
  1546.      /* Pointer to the undefined section.  */
  1547.      extern asection bfd_und_section;
  1548.      #define bfd_und_section_ptr ((asection *) &bfd_und_section)
  1549.      #define bfd_is_und_section(sec) ((sec) == bfd_und_section_ptr)
  1550.      /* Pointer to the common section.  */
  1551.      extern asection bfd_com_section;
  1552.      #define bfd_com_section_ptr ((asection *) &bfd_com_section)
  1553.      /* Pointer to the indirect section.  */
  1554.      extern asection bfd_ind_section;
  1555.      #define bfd_ind_section_ptr ((asection *) &bfd_ind_section)
  1556.      #define bfd_is_ind_section(sec) ((sec) == bfd_ind_section_ptr)
  1557.  
  1558.      #define bfd_is_const_section(SEC)              \
  1559.       (   ((SEC) == bfd_abs_section_ptr)            \
  1560.        || ((SEC) == bfd_und_section_ptr)            \
  1561.        || ((SEC) == bfd_com_section_ptr)            \
  1562.        || ((SEC) == bfd_ind_section_ptr))
  1563.  
  1564.      extern const struct bfd_symbol * const bfd_abs_symbol;
  1565.      extern const struct bfd_symbol * const bfd_com_symbol;
  1566.      extern const struct bfd_symbol * const bfd_und_symbol;
  1567.      extern const struct bfd_symbol * const bfd_ind_symbol;
  1568.  
  1569.      /* Macros to handle insertion and deletion of a bfd's sections.  These
  1570.         only handle the list pointers, ie. do not adjust section_count,
  1571.         target_index etc.  */
  1572.      #define bfd_section_list_remove(ABFD, PS) \
  1573.        do                                                   \
  1574.          {                                                  \
  1575.            asection **_ps = PS;                             \
  1576.            asection *_s = *_ps;                             \
  1577.            *_ps = _s->next;                                 \
  1578.            if (_s->next == NULL)                            \
  1579.              (ABFD)->section_tail = _ps;                    \
  1580.          }                                                  \
  1581.        while (0)
  1582.      #define bfd_section_list_insert(ABFD, PS, S) \
  1583.        do                                                   \
  1584.          {                                                  \
  1585.            asection **_ps = PS;                             \
  1586.            asection *_s = S;                                \
  1587.            _s->next = *_ps;                                 \
  1588.            *_ps = _s;                                       \
  1589.            if (_s->next == NULL)                            \
  1590.              (ABFD)->section_tail = &_s->next;              \
  1591.          }                                                  \
  1592.        while (0)
  1593.  
  1594. 
  1595. File: bfd.info,  Node: section prototypes,  Prev: typedef asection,  Up: Sections
  1596.  
  1597. 2.6.5 Section prototypes
  1598. ------------------------
  1599.  
  1600. These are the functions exported by the section handling part of BFD.
  1601.  
  1602. 2.6.5.1 `bfd_section_list_clear'
  1603. ................................
  1604.  
  1605. *Synopsis*
  1606.      void bfd_section_list_clear (bfd *);
  1607.    *Description*
  1608. Clears the section list, and also resets the section count and hash
  1609. table entries.
  1610.  
  1611. 2.6.5.2 `bfd_get_section_by_name'
  1612. .................................
  1613.  
  1614. *Synopsis*
  1615.      asection *bfd_get_section_by_name (bfd *abfd, const char *name);
  1616.    *Description*
  1617. Run through ABFD and return the one of the `asection's whose name
  1618. matches NAME, otherwise `NULL'.  *Note Sections::, for more information.
  1619.  
  1620.    This should only be used in special cases; the normal way to process
  1621. all sections of a given name is to use `bfd_map_over_sections' and
  1622. `strcmp' on the name (or better yet, base it on the section flags or
  1623. something else) for each section.
  1624.  
  1625. 2.6.5.3 `bfd_get_section_by_name_if'
  1626. ....................................
  1627.  
  1628. *Synopsis*
  1629.      asection *bfd_get_section_by_name_if
  1630.         (bfd *abfd,
  1631.          const char *name,
  1632.          bfd_boolean (*func) (bfd *abfd, asection *sect, void *obj),
  1633.          void *obj);
  1634.    *Description*
  1635. Call the provided function FUNC for each section attached to the BFD
  1636. ABFD whose name matches NAME, passing OBJ as an argument. The function
  1637. will be called as if by
  1638.  
  1639.             func (abfd, the_section, obj);
  1640.  
  1641.    It returns the first section for which FUNC returns true, otherwise
  1642. `NULL'.
  1643.  
  1644. 2.6.5.4 `bfd_get_unique_section_name'
  1645. .....................................
  1646.  
  1647. *Synopsis*
  1648.      char *bfd_get_unique_section_name
  1649.         (bfd *abfd, const char *templat, int *count);
  1650.    *Description*
  1651. Invent a section name that is unique in ABFD by tacking a dot and a
  1652. digit suffix onto the original TEMPLAT.  If COUNT is non-NULL, then it
  1653. specifies the first number tried as a suffix to generate a unique name.
  1654. The value pointed to by COUNT will be incremented in this case.
  1655.  
  1656. 2.6.5.5 `bfd_make_section_old_way'
  1657. ..................................
  1658.  
  1659. *Synopsis*
  1660.      asection *bfd_make_section_old_way (bfd *abfd, const char *name);
  1661.    *Description*
  1662. Create a new empty section called NAME and attach it to the end of the
  1663. chain of sections for the BFD ABFD. An attempt to create a section with
  1664. a name which is already in use returns its pointer without changing the
  1665. section chain.
  1666.  
  1667.    It has the funny name since this is the way it used to be before it
  1668. was rewritten....
  1669.  
  1670.    Possible errors are:
  1671.    * `bfd_error_invalid_operation' - If output has already started for
  1672.      this BFD.
  1673.  
  1674.    * `bfd_error_no_memory' - If memory allocation fails.
  1675.  
  1676. 2.6.5.6 `bfd_make_section_anyway'
  1677. .................................
  1678.  
  1679. *Synopsis*
  1680.      asection *bfd_make_section_anyway (bfd *abfd, const char *name);
  1681.    *Description*
  1682. Create a new empty section called NAME and attach it to the end of the
  1683. chain of sections for ABFD.  Create a new section even if there is
  1684. already a section with that name.
  1685.  
  1686.    Return `NULL' and set `bfd_error' on error; possible errors are:
  1687.    * `bfd_error_invalid_operation' - If output has already started for
  1688.      ABFD.
  1689.  
  1690.    * `bfd_error_no_memory' - If memory allocation fails.
  1691.  
  1692. 2.6.5.7 `bfd_make_section'
  1693. ..........................
  1694.  
  1695. *Synopsis*
  1696.      asection *bfd_make_section (bfd *, const char *name);
  1697.    *Description*
  1698. Like `bfd_make_section_anyway', but return `NULL' (without calling
  1699. bfd_set_error ()) without changing the section chain if there is
  1700. already a section named NAME.  If there is an error, return `NULL' and
  1701. set `bfd_error'.
  1702.  
  1703. 2.6.5.8 `bfd_set_section_flags'
  1704. ...............................
  1705.  
  1706. *Synopsis*
  1707.      bfd_boolean bfd_set_section_flags
  1708.         (bfd *abfd, asection *sec, flagword flags);
  1709.    *Description*
  1710. Set the attributes of the section SEC in the BFD ABFD to the value
  1711. FLAGS. Return `TRUE' on success, `FALSE' on error. Possible error
  1712. returns are:
  1713.  
  1714.    * `bfd_error_invalid_operation' - The section cannot have one or
  1715.      more of the attributes requested. For example, a .bss section in
  1716.      `a.out' may not have the `SEC_HAS_CONTENTS' field set.
  1717.  
  1718. 2.6.5.9 `bfd_map_over_sections'
  1719. ...............................
  1720.  
  1721. *Synopsis*
  1722.      void bfd_map_over_sections
  1723.         (bfd *abfd,
  1724.          void (*func) (bfd *abfd, asection *sect, void *obj),
  1725.          void *obj);
  1726.    *Description*
  1727. Call the provided function FUNC for each section attached to the BFD
  1728. ABFD, passing OBJ as an argument. The function will be called as if by
  1729.  
  1730.             func (abfd, the_section, obj);
  1731.  
  1732.    This is the preferred method for iterating over sections; an
  1733. alternative would be to use a loop:
  1734.  
  1735.                section *p;
  1736.                for (p = abfd->sections; p != NULL; p = p->next)
  1737.                   func (abfd, p, ...)
  1738.  
  1739. 2.6.5.10 `bfd_sections_find_if'
  1740. ...............................
  1741.  
  1742. *Synopsis*
  1743.      asection *bfd_sections_find_if
  1744.         (bfd *abfd,
  1745.          bfd_boolean (*operation) (bfd *abfd, asection *sect, void *obj),
  1746.          void *obj);
  1747.    *Description*
  1748. Call the provided function OPERATION for each section attached to the
  1749. BFD ABFD, passing OBJ as an argument. The function will be called as if
  1750. by
  1751.  
  1752.             operation (abfd, the_section, obj);
  1753.  
  1754.    It returns the first section for which OPERATION returns true.
  1755.  
  1756. 2.6.5.11 `bfd_set_section_size'
  1757. ...............................
  1758.  
  1759. *Synopsis*
  1760.      bfd_boolean bfd_set_section_size
  1761.         (bfd *abfd, asection *sec, bfd_size_type val);
  1762.    *Description*
  1763. Set SEC to the size VAL. If the operation is ok, then `TRUE' is
  1764. returned, else `FALSE'.
  1765.  
  1766.    Possible error returns:
  1767.    * `bfd_error_invalid_operation' - Writing has started to the BFD, so
  1768.      setting the size is invalid.
  1769.  
  1770. 2.6.5.12 `bfd_set_section_contents'
  1771. ...................................
  1772.  
  1773. *Synopsis*
  1774.      bfd_boolean bfd_set_section_contents
  1775.         (bfd *abfd, asection *section, const void *data,
  1776.          file_ptr offset, bfd_size_type count);
  1777.    *Description*
  1778. Sets the contents of the section SECTION in BFD ABFD to the data
  1779. starting in memory at DATA. The data is written to the output section
  1780. starting at offset OFFSET for COUNT octets.
  1781.  
  1782.    Normally `TRUE' is returned, else `FALSE'. Possible error returns
  1783. are:
  1784.    * `bfd_error_no_contents' - The output section does not have the
  1785.      `SEC_HAS_CONTENTS' attribute, so nothing can be written to it.
  1786.  
  1787.    * and some more too
  1788.    This routine is front end to the back end function
  1789. `_bfd_set_section_contents'.
  1790.  
  1791. 2.6.5.13 `bfd_get_section_contents'
  1792. ...................................
  1793.  
  1794. *Synopsis*
  1795.      bfd_boolean bfd_get_section_contents
  1796.         (bfd *abfd, asection *section, void *location, file_ptr offset,
  1797.          bfd_size_type count);
  1798.    *Description*
  1799. Read data from SECTION in BFD ABFD into memory starting at LOCATION.
  1800. The data is read at an offset of OFFSET from the start of the input
  1801. section, and is read for COUNT bytes.
  1802.  
  1803.    If the contents of a constructor with the `SEC_CONSTRUCTOR' flag set
  1804. are requested or if the section does not have the `SEC_HAS_CONTENTS'
  1805. flag set, then the LOCATION is filled with zeroes. If no errors occur,
  1806. `TRUE' is returned, else `FALSE'.
  1807.  
  1808. 2.6.5.14 `bfd_malloc_and_get_section'
  1809. .....................................
  1810.  
  1811. *Synopsis*
  1812.      bfd_boolean bfd_malloc_and_get_section
  1813.         (bfd *abfd, asection *section, bfd_byte **buf);
  1814.    *Description*
  1815. Read all data from SECTION in BFD ABFD into a buffer, *BUF, malloc'd by
  1816. this function.
  1817.  
  1818. 2.6.5.15 `bfd_copy_private_section_data'
  1819. ........................................
  1820.  
  1821. *Synopsis*
  1822.      bfd_boolean bfd_copy_private_section_data
  1823.         (bfd *ibfd, asection *isec, bfd *obfd, asection *osec);
  1824.    *Description*
  1825. Copy private section information from ISEC in the BFD IBFD to the
  1826. section OSEC in the BFD OBFD.  Return `TRUE' on success, `FALSE' on
  1827. error.  Possible error returns are:
  1828.  
  1829.    * `bfd_error_no_memory' - Not enough memory exists to create private
  1830.      data for OSEC.
  1831.  
  1832.      #define bfd_copy_private_section_data(ibfd, isection, obfd, osection) \
  1833.           BFD_SEND (obfd, _bfd_copy_private_section_data, \
  1834.                     (ibfd, isection, obfd, osection))
  1835.  
  1836. 2.6.5.16 `_bfd_strip_section_from_output'
  1837. .........................................
  1838.  
  1839. *Synopsis*
  1840.      void _bfd_strip_section_from_output
  1841.         (struct bfd_link_info *info, asection *section);
  1842.    *Description*
  1843. Remove SECTION from the output.  If the output section becomes empty,
  1844. remove it from the output bfd.
  1845.  
  1846.    This function won't actually do anything except twiddle flags if
  1847. called too late in the linking process, when it's not safe to remove
  1848. sections.
  1849.  
  1850. 2.6.5.17 `bfd_generic_is_group_section'
  1851. .......................................
  1852.  
  1853. *Synopsis*
  1854.      bfd_boolean bfd_generic_is_group_section (bfd *, const asection *sec);
  1855.    *Description*
  1856. Returns TRUE if SEC is a member of a group.
  1857.  
  1858. 2.6.5.18 `bfd_generic_discard_group'
  1859. ....................................
  1860.  
  1861. *Synopsis*
  1862.      bfd_boolean bfd_generic_discard_group (bfd *abfd, asection *group);
  1863.    *Description*
  1864. Remove all members of GROUP from the output.
  1865.  
  1866. 
  1867. File: bfd.info,  Node: Symbols,  Next: Archives,  Prev: Sections,  Up: BFD front end
  1868.  
  1869. 2.7 Symbols
  1870. ===========
  1871.  
  1872. BFD tries to maintain as much symbol information as it can when it
  1873. moves information from file to file. BFD passes information to
  1874. applications though the `asymbol' structure. When the application
  1875. requests the symbol table, BFD reads the table in the native form and
  1876. translates parts of it into the internal format. To maintain more than
  1877. the information passed to applications, some targets keep some
  1878. information "behind the scenes" in a structure only the particular back
  1879. end knows about. For example, the coff back end keeps the original
  1880. symbol table structure as well as the canonical structure when a BFD is
  1881. read in. On output, the coff back end can reconstruct the output symbol
  1882. table so that no information is lost, even information unique to coff
  1883. which BFD doesn't know or understand. If a coff symbol table were read,
  1884. but were written through an a.out back end, all the coff specific
  1885. information would be lost. The symbol table of a BFD is not necessarily
  1886. read in until a canonicalize request is made. Then the BFD back end
  1887. fills in a table provided by the application with pointers to the
  1888. canonical information.  To output symbols, the application provides BFD
  1889. with a table of pointers to pointers to `asymbol's. This allows
  1890. applications like the linker to output a symbol as it was read, since
  1891. the "behind the scenes" information will be still available.
  1892.  
  1893. * Menu:
  1894.  
  1895. * Reading Symbols::
  1896. * Writing Symbols::
  1897. * Mini Symbols::
  1898. * typedef asymbol::
  1899. * symbol handling functions::
  1900.  
  1901. 
  1902. File: bfd.info,  Node: Reading Symbols,  Next: Writing Symbols,  Prev: Symbols,  Up: Symbols
  1903.  
  1904. 2.7.1 Reading symbols
  1905. ---------------------
  1906.  
  1907. There are two stages to reading a symbol table from a BFD: allocating
  1908. storage, and the actual reading process. This is an excerpt from an
  1909. application which reads the symbol table:
  1910.  
  1911.               long storage_needed;
  1912.               asymbol **symbol_table;
  1913.               long number_of_symbols;
  1914.               long i;
  1915.  
  1916.               storage_needed = bfd_get_symtab_upper_bound (abfd);
  1917.  
  1918.               if (storage_needed < 0)
  1919.                 FAIL
  1920.  
  1921.               if (storage_needed == 0)
  1922.                 return;
  1923.  
  1924.               symbol_table = xmalloc (storage_needed);
  1925.                 ...
  1926.               number_of_symbols =
  1927.                  bfd_canonicalize_symtab (abfd, symbol_table);
  1928.  
  1929.               if (number_of_symbols < 0)
  1930.                 FAIL
  1931.  
  1932.               for (i = 0; i < number_of_symbols; i++)
  1933.                 process_symbol (symbol_table[i]);
  1934.  
  1935.    All storage for the symbols themselves is in an objalloc connected
  1936. to the BFD; it is freed when the BFD is closed.
  1937.  
  1938. 
  1939. File: bfd.info,  Node: Writing Symbols,  Next: Mini Symbols,  Prev: Reading Symbols,  Up: Symbols
  1940.  
  1941. 2.7.2 Writing symbols
  1942. ---------------------
  1943.  
  1944. Writing of a symbol table is automatic when a BFD open for writing is
  1945. closed. The application attaches a vector of pointers to pointers to
  1946. symbols to the BFD being written, and fills in the symbol count. The
  1947. close and cleanup code reads through the table provided and performs
  1948. all the necessary operations. The BFD output code must always be
  1949. provided with an "owned" symbol: one which has come from another BFD,
  1950. or one which has been created using `bfd_make_empty_symbol'.  Here is an
  1951. example showing the creation of a symbol table with only one element:
  1952.  
  1953.             #include "bfd.h"
  1954.             int main (void)
  1955.             {
  1956.               bfd *abfd;
  1957.               asymbol *ptrs[2];
  1958.               asymbol *new;
  1959.  
  1960.               abfd = bfd_openw ("foo","a.out-sunos-big");
  1961.               bfd_set_format (abfd, bfd_object);
  1962.               new = bfd_make_empty_symbol (abfd);
  1963.               new->name = "dummy_symbol";
  1964.               new->section = bfd_make_section_old_way (abfd, ".text");
  1965.               new->flags = BSF_GLOBAL;
  1966.               new->value = 0x12345;
  1967.  
  1968.               ptrs[0] = new;
  1969.               ptrs[1] = 0;
  1970.  
  1971.               bfd_set_symtab (abfd, ptrs, 1);
  1972.               bfd_close (abfd);
  1973.               return 0;
  1974.             }
  1975.  
  1976.             ./makesym
  1977.             nm foo
  1978.             00012345 A dummy_symbol
  1979.  
  1980.    Many formats cannot represent arbitrary symbol information; for
  1981. instance, the `a.out' object format does not allow an arbitrary number
  1982. of sections. A symbol pointing to a section which is not one  of
  1983. `.text', `.data' or `.bss' cannot be described.
  1984.  
  1985. 
  1986. File: bfd.info,  Node: Mini Symbols,  Next: typedef asymbol,  Prev: Writing Symbols,  Up: Symbols
  1987.  
  1988. 2.7.3 Mini Symbols
  1989. ------------------
  1990.  
  1991. Mini symbols provide read-only access to the symbol table.  They use
  1992. less memory space, but require more time to access.  They can be useful
  1993. for tools like nm or objdump, which may have to handle symbol tables of
  1994. extremely large executables.
  1995.  
  1996.    The `bfd_read_minisymbols' function will read the symbols into
  1997. memory in an internal form.  It will return a `void *' pointer to a
  1998. block of memory, a symbol count, and the size of each symbol.  The
  1999. pointer is allocated using `malloc', and should be freed by the caller
  2000. when it is no longer needed.
  2001.  
  2002.    The function `bfd_minisymbol_to_symbol' will take a pointer to a
  2003. minisymbol, and a pointer to a structure returned by
  2004. `bfd_make_empty_symbol', and return a `asymbol' structure.  The return
  2005. value may or may not be the same as the value from
  2006. `bfd_make_empty_symbol' which was passed in.
  2007.  
  2008. 
  2009. File: bfd.info,  Node: typedef asymbol,  Next: symbol handling functions,  Prev: Mini Symbols,  Up: Symbols
  2010.  
  2011. 2.7.4 typedef asymbol
  2012. ---------------------
  2013.  
  2014. An `asymbol' has the form:
  2015.  
  2016.  
  2017.      typedef struct bfd_symbol
  2018.      {
  2019.        /* A pointer to the BFD which owns the symbol. This information
  2020.           is necessary so that a back end can work out what additional
  2021.           information (invisible to the application writer) is carried
  2022.           with the symbol.
  2023.  
  2024.           This field is *almost* redundant, since you can use section->owner
  2025.           instead, except that some symbols point to the global sections
  2026.           bfd_{abs,com,und}_section.  This could be fixed by making
  2027.           these globals be per-bfd (or per-target-flavor).  FIXME.  */
  2028.        struct bfd *the_bfd; /* Use bfd_asymbol_bfd(sym) to access this field.  */
  2029.  
  2030.        /* The text of the symbol. The name is left alone, and not copied; the
  2031.           application may not alter it.  */
  2032.        const char *name;
  2033.  
  2034.        /* The value of the symbol.  This really should be a union of a
  2035.           numeric value with a pointer, since some flags indicate that
  2036.           a pointer to another symbol is stored here.  */
  2037.        symvalue value;
  2038.  
  2039.        /* Attributes of a symbol.  */
  2040.      #define BSF_NO_FLAGS    0x00
  2041.  
  2042.        /* The symbol has local scope; `static' in `C'. The value
  2043.           is the offset into the section of the data.  */
  2044.      #define BSF_LOCAL      0x01
  2045.  
  2046.        /* The symbol has global scope; initialized data in `C'. The
  2047.           value is the offset into the section of the data.  */
  2048.      #define BSF_GLOBAL     0x02
  2049.  
  2050.        /* The symbol has global scope and is exported. The value is
  2051.           the offset into the section of the data.  */
  2052.      #define BSF_EXPORT     BSF_GLOBAL /* No real difference.  */
  2053.  
  2054.        /* A normal C symbol would be one of:
  2055.           `BSF_LOCAL', `BSF_FORT_COMM',  `BSF_UNDEFINED' or
  2056.           `BSF_GLOBAL'.  */
  2057.  
  2058.        /* The symbol is a debugging record. The value has an arbitrary
  2059.           meaning, unless BSF_DEBUGGING_RELOC is also set.  */
  2060.      #define BSF_DEBUGGING  0x08
  2061.  
  2062.        /* The symbol denotes a function entry point.  Used in ELF,
  2063.           perhaps others someday.  */
  2064.      #define BSF_FUNCTION    0x10
  2065.  
  2066.        /* Used by the linker.  */
  2067.      #define BSF_KEEP        0x20
  2068.      #define BSF_KEEP_G      0x40
  2069.  
  2070.        /* A weak global symbol, overridable without warnings by
  2071.           a regular global symbol of the same name.  */
  2072.      #define BSF_WEAK        0x80
  2073.  
  2074.        /* This symbol was created to point to a section, e.g. ELF's
  2075.           STT_SECTION symbols.  */
  2076.      #define BSF_SECTION_SYM 0x100
  2077.  
  2078.        /* The symbol used to be a common symbol, but now it is
  2079.           allocated.  */
  2080.      #define BSF_OLD_COMMON  0x200
  2081.  
  2082.        /* The default value for common data.  */
  2083.      #define BFD_FORT_COMM_DEFAULT_VALUE 0
  2084.  
  2085.        /* In some files the type of a symbol sometimes alters its
  2086.           location in an output file - ie in coff a `ISFCN' symbol
  2087.           which is also `C_EXT' symbol appears where it was
  2088.           declared and not at the end of a section.  This bit is set
  2089.           by the target BFD part to convey this information.  */
  2090.      #define BSF_NOT_AT_END    0x400
  2091.  
  2092.        /* Signal that the symbol is the label of constructor section.  */
  2093.      #define BSF_CONSTRUCTOR   0x800
  2094.  
  2095.        /* Signal that the symbol is a warning symbol.  The name is a
  2096.           warning.  The name of the next symbol is the one to warn about;
  2097.           if a reference is made to a symbol with the same name as the next
  2098.           symbol, a warning is issued by the linker.  */
  2099.      #define BSF_WARNING       0x1000
  2100.  
  2101.        /* Signal that the symbol is indirect.  This symbol is an indirect
  2102.           pointer to the symbol with the same name as the next symbol.  */
  2103.      #define BSF_INDIRECT      0x2000
  2104.  
  2105.        /* BSF_FILE marks symbols that contain a file name.  This is used
  2106.           for ELF STT_FILE symbols.  */
  2107.      #define BSF_FILE          0x4000
  2108.  
  2109.        /* Symbol is from dynamic linking information.  */
  2110.      #define BSF_DYNAMIC       0x8000
  2111.  
  2112.        /* The symbol denotes a data object.  Used in ELF, and perhaps
  2113.           others someday.  */
  2114.      #define BSF_OBJECT        0x10000
  2115.  
  2116.        /* This symbol is a debugging symbol.  The value is the offset
  2117.           into the section of the data.  BSF_DEBUGGING should be set
  2118.           as well.  */
  2119.      #define BSF_DEBUGGING_RELOC 0x20000
  2120.  
  2121.        /* This symbol is thread local.  Used in ELF.  */
  2122.      #define BSF_THREAD_LOCAL  0x40000
  2123.  
  2124.        flagword flags;
  2125.  
  2126.        /* A pointer to the section to which this symbol is
  2127.           relative.  This will always be non NULL, there are special
  2128.           sections for undefined and absolute symbols.  */
  2129.        struct bfd_section *section;
  2130.  
  2131.        /* Back end special data.  */
  2132.        union
  2133.          {
  2134.            void *p;
  2135.            bfd_vma i;
  2136.          }
  2137.        udata;
  2138.      }
  2139.      asymbol;
  2140.  
  2141. 
  2142. File: bfd.info,  Node: symbol handling functions,  Prev: typedef asymbol,  Up: Symbols
  2143.  
  2144. 2.7.5 Symbol handling functions
  2145. -------------------------------
  2146.  
  2147. 2.7.5.1 `bfd_get_symtab_upper_bound'
  2148. ....................................
  2149.  
  2150. *Description*
  2151. Return the number of bytes required to store a vector of pointers to
  2152. `asymbols' for all the symbols in the BFD ABFD, including a terminal
  2153. NULL pointer. If there are no symbols in the BFD, then return 0.  If an
  2154. error occurs, return -1.
  2155.      #define bfd_get_symtab_upper_bound(abfd) \
  2156.           BFD_SEND (abfd, _bfd_get_symtab_upper_bound, (abfd))
  2157.  
  2158. 2.7.5.2 `bfd_is_local_label'
  2159. ............................
  2160.  
  2161. *Synopsis*
  2162.      bfd_boolean bfd_is_local_label (bfd *abfd, asymbol *sym);
  2163.    *Description*
  2164. Return TRUE if the given symbol SYM in the BFD ABFD is a compiler
  2165. generated local label, else return FALSE.
  2166.  
  2167. 2.7.5.3 `bfd_is_local_label_name'
  2168. .................................
  2169.  
  2170. *Synopsis*
  2171.      bfd_boolean bfd_is_local_label_name (bfd *abfd, const char *name);
  2172.    *Description*
  2173. Return TRUE if a symbol with the name NAME in the BFD ABFD is a
  2174. compiler generated local label, else return FALSE.  This just checks
  2175. whether the name has the form of a local label.
  2176.      #define bfd_is_local_label_name(abfd, name) \
  2177.        BFD_SEND (abfd, _bfd_is_local_label_name, (abfd, name))
  2178.  
  2179. 2.7.5.4 `bfd_is_target_special_symbol'
  2180. ......................................
  2181.  
  2182. *Synopsis*
  2183.      bfd_boolean bfd_is_target_special_symbol (bfd *abfd, asymbol *sym);
  2184.    *Description*
  2185. Return TRUE iff a symbol SYM in the BFD ABFD is something special to
  2186. the particular target represented by the BFD.  Such symbols should
  2187. normally not be mentioned to the user.
  2188.      #define bfd_is_target_special_symbol(abfd, sym) \
  2189.        BFD_SEND (abfd, _bfd_is_target_special_symbol, (abfd, sym))
  2190.  
  2191. 2.7.5.5 `bfd_canonicalize_symtab'
  2192. .................................
  2193.  
  2194. *Description*
  2195. Read the symbols from the BFD ABFD, and fills in the vector LOCATION
  2196. with pointers to the symbols and a trailing NULL.  Return the actual
  2197. number of symbol pointers, not including the NULL.
  2198.      #define bfd_canonicalize_symtab(abfd, location) \
  2199.        BFD_SEND (abfd, _bfd_canonicalize_symtab, (abfd, location))
  2200.  
  2201. 2.7.5.6 `bfd_set_symtab'
  2202. ........................
  2203.  
  2204. *Synopsis*
  2205.      bfd_boolean bfd_set_symtab
  2206.         (bfd *abfd, asymbol **location, unsigned int count);
  2207.    *Description*
  2208. Arrange that when the output BFD ABFD is closed, the table LOCATION of
  2209. COUNT pointers to symbols will be written.
  2210.  
  2211. 2.7.5.7 `bfd_print_symbol_vandf'
  2212. ................................
  2213.  
  2214. *Synopsis*
  2215.      void bfd_print_symbol_vandf (bfd *abfd, void *file, asymbol *symbol);
  2216.    *Description*
  2217. Print the value and flags of the SYMBOL supplied to the stream FILE.
  2218.  
  2219. 2.7.5.8 `bfd_make_empty_symbol'
  2220. ...............................
  2221.  
  2222. *Description*
  2223. Create a new `asymbol' structure for the BFD ABFD and return a pointer
  2224. to it.
  2225.  
  2226.    This routine is necessary because each back end has private
  2227. information surrounding the `asymbol'. Building your own `asymbol' and
  2228. pointing to it will not create the private information, and will cause
  2229. problems later on.
  2230.      #define bfd_make_empty_symbol(abfd) \
  2231.        BFD_SEND (abfd, _bfd_make_empty_symbol, (abfd))
  2232.  
  2233. 2.7.5.9 `_bfd_generic_make_empty_symbol'
  2234. ........................................
  2235.  
  2236. *Synopsis*
  2237.      asymbol *_bfd_generic_make_empty_symbol (bfd *);
  2238.    *Description*
  2239. Create a new `asymbol' structure for the BFD ABFD and return a pointer
  2240. to it.  Used by core file routines, binary back-end and anywhere else
  2241. where no private info is needed.
  2242.  
  2243. 2.7.5.10 `bfd_make_debug_symbol'
  2244. ................................
  2245.  
  2246. *Description*
  2247. Create a new `asymbol' structure for the BFD ABFD, to be used as a
  2248. debugging symbol.  Further details of its use have yet to be worked out.
  2249.      #define bfd_make_debug_symbol(abfd,ptr,size) \
  2250.        BFD_SEND (abfd, _bfd_make_debug_symbol, (abfd, ptr, size))
  2251.  
  2252. 2.7.5.11 `bfd_decode_symclass'
  2253. ..............................
  2254.  
  2255. *Description*
  2256. Return a character corresponding to the symbol class of SYMBOL, or '?'
  2257. for an unknown class.
  2258.  
  2259.    *Synopsis*
  2260.      int bfd_decode_symclass (asymbol *symbol);
  2261.    
  2262. 2.7.5.12 `bfd_is_undefined_symclass'
  2263. ....................................
  2264.  
  2265. *Description*
  2266. Returns non-zero if the class symbol returned by bfd_decode_symclass
  2267. represents an undefined symbol.  Returns zero otherwise.
  2268.  
  2269.    *Synopsis*
  2270.      bfd_boolean bfd_is_undefined_symclass (int symclass);
  2271.    
  2272. 2.7.5.13 `bfd_symbol_info'
  2273. ..........................
  2274.  
  2275. *Description*
  2276. Fill in the basic info about symbol that nm needs.  Additional info may
  2277. be added by the back-ends after calling this function.
  2278.  
  2279.    *Synopsis*
  2280.      void bfd_symbol_info (asymbol *symbol, symbol_info *ret);
  2281.    
  2282. 2.7.5.14 `bfd_copy_private_symbol_data'
  2283. .......................................
  2284.  
  2285. *Synopsis*
  2286.      bfd_boolean bfd_copy_private_symbol_data
  2287.         (bfd *ibfd, asymbol *isym, bfd *obfd, asymbol *osym);
  2288.    *Description*
  2289. Copy private symbol information from ISYM in the BFD IBFD to the symbol
  2290. OSYM in the BFD OBFD.  Return `TRUE' on success, `FALSE' on error.
  2291. Possible error returns are:
  2292.  
  2293.    * `bfd_error_no_memory' - Not enough memory exists to create private
  2294.      data for OSEC.
  2295.  
  2296.      #define bfd_copy_private_symbol_data(ibfd, isymbol, obfd, osymbol) \
  2297.        BFD_SEND (obfd, _bfd_copy_private_symbol_data, \
  2298.                  (ibfd, isymbol, obfd, osymbol))
  2299.  
  2300. 
  2301. File: bfd.info,  Node: Archives,  Next: Formats,  Prev: Symbols,  Up: BFD front end
  2302.  
  2303. 2.8 Archives
  2304. ============
  2305.  
  2306. *Description*
  2307. An archive (or library) is just another BFD.  It has a symbol table,
  2308. although there's not much a user program will do with it.
  2309.  
  2310.    The big difference between an archive BFD and an ordinary BFD is
  2311. that the archive doesn't have sections.  Instead it has a chain of BFDs
  2312. that are considered its contents.  These BFDs can be manipulated like
  2313. any other.  The BFDs contained in an archive opened for reading will
  2314. all be opened for reading.  You may put either input or output BFDs
  2315. into an archive opened for output; they will be handled correctly when
  2316. the archive is closed.
  2317.  
  2318.    Use `bfd_openr_next_archived_file' to step through the contents of
  2319. an archive opened for input.  You don't have to read the entire archive
  2320. if you don't want to!  Read it until you find what you want.
  2321.  
  2322.    Archive contents of output BFDs are chained through the `next'
  2323. pointer in a BFD.  The first one is findable through the `archive_head'
  2324. slot of the archive.  Set it with `bfd_set_archive_head' (q.v.).  A
  2325. given BFD may be in only one open output archive at a time.
  2326.  
  2327.    As expected, the BFD archive code is more general than the archive
  2328. code of any given environment.  BFD archives may contain files of
  2329. different formats (e.g., a.out and coff) and even different
  2330. architectures.  You may even place archives recursively into archives!
  2331.  
  2332.    This can cause unexpected confusion, since some archive formats are
  2333. more expressive than others.  For instance, Intel COFF archives can
  2334. preserve long filenames; SunOS a.out archives cannot.  If you move a
  2335. file from the first to the second format and back again, the filename
  2336. may be truncated.  Likewise, different a.out environments have different
  2337. conventions as to how they truncate filenames, whether they preserve
  2338. directory names in filenames, etc.  When interoperating with native
  2339. tools, be sure your files are homogeneous.
  2340.  
  2341.    Beware: most of these formats do not react well to the presence of
  2342. spaces in filenames.  We do the best we can, but can't always handle
  2343. this case due to restrictions in the format of archives.  Many Unix
  2344. utilities are braindead in regards to spaces and such in filenames
  2345. anyway, so this shouldn't be much of a restriction.
  2346.  
  2347.    Archives are supported in BFD in `archive.c'.
  2348.  
  2349. 2.8.0.1 `bfd_get_next_mapent'
  2350. .............................
  2351.  
  2352. *Synopsis*
  2353.      symindex bfd_get_next_mapent
  2354.         (bfd *abfd, symindex previous, carsym **sym);
  2355.    *Description*
  2356. Step through archive ABFD's symbol table (if it has one).  Successively
  2357. update SYM with the next symbol's information, returning that symbol's
  2358. (internal) index into the symbol table.
  2359.  
  2360.    Supply `BFD_NO_MORE_SYMBOLS' as the PREVIOUS entry to get the first
  2361. one; returns `BFD_NO_MORE_SYMBOLS' when you've already got the last one.
  2362.  
  2363.    A `carsym' is a canonical archive symbol.  The only user-visible
  2364. element is its name, a null-terminated string.
  2365.  
  2366. 2.8.0.2 `bfd_set_archive_head'
  2367. ..............................
  2368.  
  2369. *Synopsis*
  2370.      bfd_boolean bfd_set_archive_head (bfd *output, bfd *new_head);
  2371.    *Description*
  2372. Set the head of the chain of BFDs contained in the archive OUTPUT to
  2373. NEW_HEAD.
  2374.  
  2375. 2.8.0.3 `bfd_openr_next_archived_file'
  2376. ......................................
  2377.  
  2378. *Synopsis*
  2379.      bfd *bfd_openr_next_archived_file (bfd *archive, bfd *previous);
  2380.    *Description*
  2381. Provided a BFD, ARCHIVE, containing an archive and NULL, open an input
  2382. BFD on the first contained element and returns that.  Subsequent calls
  2383. should pass the archive and the previous return value to return a
  2384. created BFD to the next contained element. NULL is returned when there
  2385. are no more.
  2386.  
  2387. 
  2388. File: bfd.info,  Node: Formats,  Next: Relocations,  Prev: Archives,  Up: BFD front end
  2389.  
  2390. 2.9 File formats
  2391. ================
  2392.  
  2393. A format is a BFD concept of high level file contents type. The formats
  2394. supported by BFD are:
  2395.  
  2396.    * `bfd_object'
  2397.    The BFD may contain data, symbols, relocations and debug info.
  2398.  
  2399.    * `bfd_archive'
  2400.    The BFD contains other BFDs and an optional index.
  2401.  
  2402.    * `bfd_core'
  2403.    The BFD contains the result of an executable core dump.
  2404.  
  2405. 2.9.0.1 `bfd_check_format'
  2406. ..........................
  2407.  
  2408. *Synopsis*
  2409.      bfd_boolean bfd_check_format (bfd *abfd, bfd_format format);
  2410.    *Description*
  2411. Verify if the file attached to the BFD ABFD is compatible with the
  2412. format FORMAT (i.e., one of `bfd_object', `bfd_archive' or `bfd_core').
  2413.  
  2414.    If the BFD has been set to a specific target before the call, only
  2415. the named target and format combination is checked. If the target has
  2416. not been set, or has been set to `default', then all the known target
  2417. backends is interrogated to determine a match.  If the default target
  2418. matches, it is used.  If not, exactly one target must recognize the
  2419. file, or an error results.
  2420.  
  2421.    The function returns `TRUE' on success, otherwise `FALSE' with one
  2422. of the following error codes:
  2423.  
  2424.    * `bfd_error_invalid_operation' - if `format' is not one of
  2425.      `bfd_object', `bfd_archive' or `bfd_core'.
  2426.  
  2427.    * `bfd_error_system_call' - if an error occured during a read - even
  2428.      some file mismatches can cause bfd_error_system_calls.
  2429.  
  2430.    * `file_not_recognised' - none of the backends recognised the file
  2431.      format.
  2432.  
  2433.    * `bfd_error_file_ambiguously_recognized' - more than one backend
  2434.      recognised the file format.
  2435.  
  2436. 2.9.0.2 `bfd_check_format_matches'
  2437. ..................................
  2438.  
  2439. *Synopsis*
  2440.      bfd_boolean bfd_check_format_matches
  2441.         (bfd *abfd, bfd_format format, char ***matching);
  2442.    *Description*
  2443. Like `bfd_check_format', except when it returns FALSE with `bfd_errno'
  2444. set to `bfd_error_file_ambiguously_recognized'.  In that case, if
  2445. MATCHING is not NULL, it will be filled in with a NULL-terminated list
  2446. of the names of the formats that matched, allocated with `malloc'.
  2447. Then the user may choose a format and try again.
  2448.  
  2449.    When done with the list that MATCHING points to, the caller should
  2450. free it.
  2451.  
  2452. 2.9.0.3 `bfd_set_format'
  2453. ........................
  2454.  
  2455. *Synopsis*
  2456.      bfd_boolean bfd_set_format (bfd *abfd, bfd_format format);
  2457.    *Description*
  2458. This function sets the file format of the BFD ABFD to the format
  2459. FORMAT. If the target set in the BFD does not support the format
  2460. requested, the format is invalid, or the BFD is not open for writing,
  2461. then an error occurs.
  2462.  
  2463. 2.9.0.4 `bfd_format_string'
  2464. ...........................
  2465.  
  2466. *Synopsis*
  2467.      const char *bfd_format_string (bfd_format format);
  2468.    *Description*
  2469. Return a pointer to a const string `invalid', `object', `archive',
  2470. `core', or `unknown', depending upon the value of FORMAT.
  2471.  
  2472. 
  2473. File: bfd.info,  Node: Relocations,  Next: Core Files,  Prev: Formats,  Up: BFD front end
  2474.  
  2475. 2.10 Relocations
  2476. ================
  2477.  
  2478. BFD maintains relocations in much the same way it maintains symbols:
  2479. they are left alone until required, then read in en-masse and
  2480. translated into an internal form.  A common routine
  2481. `bfd_perform_relocation' acts upon the canonical form to do the fixup.
  2482.  
  2483.    Relocations are maintained on a per section basis, while symbols are
  2484. maintained on a per BFD basis.
  2485.  
  2486.    All that a back end has to do to fit the BFD interface is to create
  2487. a `struct reloc_cache_entry' for each relocation in a particular
  2488. section, and fill in the right bits of the structures.
  2489.  
  2490. * Menu:
  2491.  
  2492. * typedef arelent::
  2493. * howto manager::
  2494.  
  2495. 
  2496. File: bfd.info,  Node: typedef arelent,  Next: howto manager,  Prev: Relocations,  Up: Relocations
  2497.  
  2498. 2.10.1 typedef arelent
  2499. ----------------------
  2500.  
  2501. This is the structure of a relocation entry:
  2502.  
  2503.  
  2504.      typedef enum bfd_reloc_status
  2505.      {
  2506.        /* No errors detected.  */
  2507.        bfd_reloc_ok,
  2508.  
  2509.        /* The relocation was performed, but there was an overflow.  */
  2510.        bfd_reloc_overflow,
  2511.  
  2512.        /* The address to relocate was not within the section supplied.  */
  2513.        bfd_reloc_outofrange,
  2514.  
  2515.        /* Used by special functions.  */
  2516.        bfd_reloc_continue,
  2517.  
  2518.        /* Unsupported relocation size requested.  */
  2519.        bfd_reloc_notsupported,
  2520.  
  2521.        /* Unused.  */
  2522.        bfd_reloc_other,
  2523.  
  2524.        /* The symbol to relocate against was undefined.  */
  2525.        bfd_reloc_undefined,
  2526.  
  2527.        /* The relocation was performed, but may not be ok - presently
  2528.           generated only when linking i960 coff files with i960 b.out
  2529.           symbols.  If this type is returned, the error_message argument
  2530.           to bfd_perform_relocation will be set.  */
  2531.        bfd_reloc_dangerous
  2532.       }
  2533.       bfd_reloc_status_type;
  2534.  
  2535.  
  2536.      typedef struct reloc_cache_entry
  2537.      {
  2538.        /* A pointer into the canonical table of pointers.  */
  2539.        struct bfd_symbol **sym_ptr_ptr;
  2540.  
  2541.        /* offset in section.  */
  2542.        bfd_size_type address;
  2543.  
  2544.        /* addend for relocation value.  */
  2545.        bfd_vma addend;
  2546.  
  2547.        /* Pointer to how to perform the required relocation.  */
  2548.        reloc_howto_type *howto;
  2549.  
  2550.      }
  2551.      arelent;
  2552.    *Description*
  2553. Here is a description of each of the fields within an `arelent':
  2554.  
  2555.    * `sym_ptr_ptr'
  2556.    The symbol table pointer points to a pointer to the symbol
  2557. associated with the relocation request.  It is the pointer into the
  2558. table returned by the back end's `canonicalize_symtab' action. *Note
  2559. Symbols::. The symbol is referenced through a pointer to a pointer so
  2560. that tools like the linker can fix up all the symbols of the same name
  2561. by modifying only one pointer. The relocation routine looks in the
  2562. symbol and uses the base of the section the symbol is attached to and
  2563. the value of the symbol as the initial relocation offset. If the symbol
  2564. pointer is zero, then the section provided is looked up.
  2565.  
  2566.    * `address'
  2567.    The `address' field gives the offset in bytes from the base of the
  2568. section data which owns the relocation record to the first byte of
  2569. relocatable information. The actual data relocated will be relative to
  2570. this point; for example, a relocation type which modifies the bottom
  2571. two bytes of a four byte word would not touch the first byte pointed to
  2572. in a big endian world.
  2573.  
  2574.    * `addend'
  2575.    The `addend' is a value provided by the back end to be added (!)  to
  2576. the relocation offset. Its interpretation is dependent upon the howto.
  2577. For example, on the 68k the code:
  2578.  
  2579.              char foo[];
  2580.              main()
  2581.                      {
  2582.                      return foo[0x12345678];
  2583.                      }
  2584.  
  2585.    Could be compiled into:
  2586.  
  2587.              linkw fp,#-4
  2588.              moveb @#12345678,d0
  2589.              extbl d0
  2590.              unlk fp
  2591.              rts
  2592.  
  2593.    This could create a reloc pointing to `foo', but leave the offset in
  2594. the data, something like:
  2595.  
  2596.      RELOCATION RECORDS FOR [.text]:
  2597.      offset   type      value
  2598.      00000006 32        _foo
  2599.  
  2600.      00000000 4e56 fffc          ; linkw fp,#-4
  2601.      00000004 1039 1234 5678     ; moveb @#12345678,d0
  2602.      0000000a 49c0               ; extbl d0
  2603.      0000000c 4e5e               ; unlk fp
  2604.      0000000e 4e75               ; rts
  2605.  
  2606.    Using coff and an 88k, some instructions don't have enough space in
  2607. them to represent the full address range, and pointers have to be
  2608. loaded in two parts. So you'd get something like:
  2609.  
  2610.              or.u     r13,r0,hi16(_foo+0x12345678)
  2611.              ld.b     r2,r13,lo16(_foo+0x12345678)
  2612.              jmp      r1
  2613.  
  2614.    This should create two relocs, both pointing to `_foo', and with
  2615. 0x12340000 in their addend field. The data would consist of:
  2616.  
  2617.      RELOCATION RECORDS FOR [.text]:
  2618.      offset   type      value
  2619.      00000002 HVRT16    _foo+0x12340000
  2620.      00000006 LVRT16    _foo+0x12340000
  2621.  
  2622.      00000000 5da05678           ; or.u r13,r0,0x5678
  2623.      00000004 1c4d5678           ; ld.b r2,r13,0x5678
  2624.      00000008 f400c001           ; jmp r1
  2625.  
  2626.    The relocation routine digs out the value from the data, adds it to
  2627. the addend to get the original offset, and then adds the value of
  2628. `_foo'. Note that all 32 bits have to be kept around somewhere, to cope
  2629. with carry from bit 15 to bit 16.
  2630.  
  2631.    One further example is the sparc and the a.out format. The sparc has
  2632. a similar problem to the 88k, in that some instructions don't have room
  2633. for an entire offset, but on the sparc the parts are created in odd
  2634. sized lumps. The designers of the a.out format chose to not use the
  2635. data within the section for storing part of the offset; all the offset
  2636. is kept within the reloc. Anything in the data should be ignored.
  2637.  
  2638.              save %sp,-112,%sp
  2639.              sethi %hi(_foo+0x12345678),%g2
  2640.              ldsb [%g2+%lo(_foo+0x12345678)],%i0
  2641.              ret
  2642.              restore
  2643.  
  2644.    Both relocs contain a pointer to `foo', and the offsets contain junk.
  2645.  
  2646.      RELOCATION RECORDS FOR [.text]:
  2647.      offset   type      value
  2648.      00000004 HI22      _foo+0x12345678
  2649.      00000008 LO10      _foo+0x12345678
  2650.  
  2651.      00000000 9de3bf90     ; save %sp,-112,%sp
  2652.      00000004 05000000     ; sethi %hi(_foo+0),%g2
  2653.      00000008 f048a000     ; ldsb [%g2+%lo(_foo+0)],%i0
  2654.      0000000c 81c7e008     ; ret
  2655.      00000010 81e80000     ; restore
  2656.  
  2657.    * `howto'
  2658.    The `howto' field can be imagined as a relocation instruction. It is
  2659. a pointer to a structure which contains information on what to do with
  2660. all of the other information in the reloc record and data section. A
  2661. back end would normally have a relocation instruction set and turn
  2662. relocations into pointers to the correct structure on input - but it
  2663. would be possible to create each howto field on demand.
  2664.  
  2665. 2.10.1.1 `enum complain_overflow'
  2666. .................................
  2667.  
  2668. Indicates what sort of overflow checking should be done when performing
  2669. a relocation.
  2670.  
  2671.  
  2672.      enum complain_overflow
  2673.      {
  2674.        /* Do not complain on overflow.  */
  2675.        complain_overflow_dont,
  2676.  
  2677.        /* Complain if the bitfield overflows, whether it is considered
  2678.           as signed or unsigned.  */
  2679.        complain_overflow_bitfield,
  2680.  
  2681.        /* Complain if the value overflows when considered as signed
  2682.           number.  */
  2683.        complain_overflow_signed,
  2684.  
  2685.        /* Complain if the value overflows when considered as an
  2686.           unsigned number.  */
  2687.        complain_overflow_unsigned
  2688.      };
  2689.  
  2690. 2.10.1.2 `reloc_howto_type'
  2691. ...........................
  2692.  
  2693. The `reloc_howto_type' is a structure which contains all the
  2694. information that libbfd needs to know to tie up a back end's data.
  2695.  
  2696.      struct bfd_symbol;             /* Forward declaration.  */
  2697.  
  2698.      struct reloc_howto_struct
  2699.      {
  2700.        /*  The type field has mainly a documentary use - the back end can
  2701.            do what it wants with it, though normally the back end's
  2702.            external idea of what a reloc number is stored
  2703.            in this field.  For example, a PC relative word relocation
  2704.            in a coff environment has the type 023 - because that's
  2705.            what the outside world calls a R_PCRWORD reloc.  */
  2706.        unsigned int type;
  2707.  
  2708.        /*  The value the final relocation is shifted right by.  This drops
  2709.            unwanted data from the relocation.  */
  2710.        unsigned int rightshift;
  2711.  
  2712.        /*  The size of the item to be relocated.  This is *not* a
  2713.            power-of-two measure.  To get the number of bytes operated
  2714.            on by a type of relocation, use bfd_get_reloc_size.  */
  2715.        int size;
  2716.  
  2717.        /*  The number of bits in the item to be relocated.  This is used
  2718.            when doing overflow checking.  */
  2719.        unsigned int bitsize;
  2720.  
  2721.        /*  Notes that the relocation is relative to the location in the
  2722.            data section of the addend.  The relocation function will
  2723.            subtract from the relocation value the address of the location
  2724.            being relocated.  */
  2725.        bfd_boolean pc_relative;
  2726.  
  2727.        /*  The bit position of the reloc value in the destination.
  2728.            The relocated value is left shifted by this amount.  */
  2729.        unsigned int bitpos;
  2730.  
  2731.        /* What type of overflow error should be checked for when
  2732.           relocating.  */
  2733.        enum complain_overflow complain_on_overflow;
  2734.  
  2735.        /* If this field is non null, then the supplied function is
  2736.           called rather than the normal function.  This allows really
  2737.           strange relocation methods to be accommodated (e.g., i960 callj
  2738.           instructions).  */
  2739.        bfd_reloc_status_type (*special_function)
  2740.          (bfd *, arelent *, struct bfd_symbol *, void *, asection *,
  2741.           bfd *, char **);
  2742.  
  2743.        /* The textual name of the relocation type.  */
  2744.        char *name;
  2745.  
  2746.        /* Some formats record a relocation addend in the section contents
  2747.           rather than with the relocation.  For ELF formats this is the
  2748.           distinction between USE_REL and USE_RELA (though the code checks
  2749.           for USE_REL == 1/0).  The value of this field is TRUE if the
  2750.           addend is recorded with the section contents; when performing a
  2751.           partial link (ld -r) the section contents (the data) will be
  2752.           modified.  The value of this field is FALSE if addends are
  2753.           recorded with the relocation (in arelent.addend); when performing
  2754.           a partial link the relocation will be modified.
  2755.           All relocations for all ELF USE_RELA targets should set this field
  2756.           to FALSE (values of TRUE should be looked on with suspicion).
  2757.           However, the converse is not true: not all relocations of all ELF
  2758.           USE_REL targets set this field to TRUE.  Why this is so is peculiar
  2759.           to each particular target.  For relocs that aren't used in partial
  2760.           links (e.g. GOT stuff) it doesn't matter what this is set to.  */
  2761.        bfd_boolean partial_inplace;
  2762.  
  2763.        /* src_mask selects the part of the instruction (or data) to be used
  2764.           in the relocation sum.  If the target relocations don't have an
  2765.           addend in the reloc, eg. ELF USE_REL, src_mask will normally equal
  2766.           dst_mask to extract the addend from the section contents.  If
  2767.           relocations do have an addend in the reloc, eg. ELF USE_RELA, this
  2768.           field should be zero.  Non-zero values for ELF USE_RELA targets are
  2769.           bogus as in those cases the value in the dst_mask part of the
  2770.           section contents should be treated as garbage.  */
  2771.        bfd_vma src_mask;
  2772.  
  2773.        /* dst_mask selects which parts of the instruction (or data) are
  2774.           replaced with a relocated value.  */
  2775.        bfd_vma dst_mask;
  2776.  
  2777.        /* When some formats create PC relative instructions, they leave
  2778.           the value of the pc of the place being relocated in the offset
  2779.           slot of the instruction, so that a PC relative relocation can
  2780.           be made just by adding in an ordinary offset (e.g., sun3 a.out).
  2781.           Some formats leave the displacement part of an instruction
  2782.           empty (e.g., m88k bcs); this flag signals the fact.  */
  2783.        bfd_boolean pcrel_offset;
  2784.      };
  2785.    
  2786. 2.10.1.3 `The HOWTO Macro'
  2787. ..........................
  2788.  
  2789. *Description*
  2790. The HOWTO define is horrible and will go away.
  2791.      #define HOWTO(C, R, S, B, P, BI, O, SF, NAME, INPLACE, MASKSRC, MASKDST, PC) \
  2792.        { (unsigned) C, R, S, B, P, BI, O, SF, NAME, INPLACE, MASKSRC, MASKDST, PC }
  2793.  
  2794.    *Description*
  2795. And will be replaced with the totally magic way. But for the moment, we
  2796. are compatible, so do it this way.
  2797.      #define NEWHOWTO(FUNCTION, NAME, SIZE, REL, IN) \
  2798.        HOWTO (0, 0, SIZE, 0, REL, 0, complain_overflow_dont, FUNCTION, \
  2799.               NAME, FALSE, 0, 0, IN)
  2800.  
  2801.    *Description*
  2802. This is used to fill in an empty howto entry in an array.
  2803.      #define EMPTY_HOWTO(C) \
  2804.        HOWTO ((C), 0, 0, 0, FALSE, 0, complain_overflow_dont, NULL, \
  2805.               NULL, FALSE, 0, 0, FALSE)
  2806.  
  2807.    *Description*
  2808. Helper routine to turn a symbol into a relocation value.
  2809.      #define HOWTO_PREPARE(relocation, symbol)               \
  2810.        {                                                     \
  2811.          if (symbol != NULL)                                 \
  2812.            {                                                 \
  2813.              if (bfd_is_com_section (symbol->section))       \
  2814.                {                                             \
  2815.                  relocation = 0;                             \
  2816.                }                                             \
  2817.              else                                            \
  2818.                {                                             \
  2819.                  relocation = symbol->value;                 \
  2820.                }                                             \
  2821.            }                                                 \
  2822.        }
  2823.  
  2824. 2.10.1.4 `bfd_get_reloc_size'
  2825. .............................
  2826.  
  2827. *Synopsis*
  2828.      unsigned int bfd_get_reloc_size (reloc_howto_type *);
  2829.    *Description*
  2830. For a reloc_howto_type that operates on a fixed number of bytes, this
  2831. returns the number of bytes operated on.
  2832.  
  2833. 2.10.1.5 `arelent_chain'
  2834. ........................
  2835.  
  2836. *Description*
  2837. How relocs are tied together in an `asection':
  2838.      typedef struct relent_chain
  2839.      {
  2840.        arelent relent;
  2841.        struct relent_chain *next;
  2842.      }
  2843.      arelent_chain;
  2844.  
  2845. 2.10.1.6 `bfd_check_overflow'
  2846. .............................
  2847.  
  2848. *Synopsis*
  2849.      bfd_reloc_status_type bfd_check_overflow
  2850.         (enum complain_overflow how,
  2851.          unsigned int bitsize,
  2852.          unsigned int rightshift,
  2853.          unsigned int addrsize,
  2854.          bfd_vma relocation);
  2855.    *Description*
  2856. Perform overflow checking on RELOCATION which has BITSIZE significant
  2857. bits and will be shifted right by RIGHTSHIFT bits, on a machine with
  2858. addresses containing ADDRSIZE significant bits.  The result is either of
  2859. `bfd_reloc_ok' or `bfd_reloc_overflow'.
  2860.  
  2861. 2.10.1.7 `bfd_perform_relocation'
  2862. .................................
  2863.  
  2864. *Synopsis*
  2865.      bfd_reloc_status_type bfd_perform_relocation
  2866.         (bfd *abfd,
  2867.          arelent *reloc_entry,
  2868.          void *data,
  2869.          asection *input_section,
  2870.          bfd *output_bfd,
  2871.          char **error_message);
  2872.    *Description*
  2873. If OUTPUT_BFD is supplied to this function, the generated image will be
  2874. relocatable; the relocations are copied to the output file after they
  2875. have been changed to reflect the new state of the world. There are two
  2876. ways of reflecting the results of partial linkage in an output file: by
  2877. modifying the output data in place, and by modifying the relocation
  2878. record.  Some native formats (e.g., basic a.out and basic coff) have no
  2879. way of specifying an addend in the relocation type, so the addend has
  2880. to go in the output data.  This is no big deal since in these formats
  2881. the output data slot will always be big enough for the addend. Complex
  2882. reloc types with addends were invented to solve just this problem.  The
  2883. ERROR_MESSAGE argument is set to an error message if this return
  2884. `bfd_reloc_dangerous'.
  2885.  
  2886. 2.10.1.8 `bfd_install_relocation'
  2887. .................................
  2888.  
  2889. *Synopsis*
  2890.      bfd_reloc_status_type bfd_install_relocation
  2891.         (bfd *abfd,
  2892.          arelent *reloc_entry,
  2893.          void *data, bfd_vma data_start,
  2894.          asection *input_section,
  2895.          char **error_message);
  2896.    *Description*
  2897. This looks remarkably like `bfd_perform_relocation', except it does not
  2898. expect that the section contents have been filled in.  I.e., it's
  2899. suitable for use when creating, rather than applying a relocation.
  2900.  
  2901.    For now, this function should be considered reserved for the
  2902. assembler.
  2903.  
  2904. 
  2905. File: bfd.info,  Node: howto manager,  Prev: typedef arelent,  Up: Relocations
  2906.  
  2907. 2.11 The howto manager
  2908. ======================
  2909.  
  2910. When an application wants to create a relocation, but doesn't know what
  2911. the target machine might call it, it can find out by using this bit of
  2912. code.
  2913.  
  2914. 2.11.0.1 `bfd_reloc_code_type'
  2915. ..............................
  2916.  
  2917. *Description*
  2918. The insides of a reloc code.  The idea is that, eventually, there will
  2919. be one enumerator for every type of relocation we ever do.  Pass one of
  2920. these values to `bfd_reloc_type_lookup', and it'll return a howto
  2921. pointer.
  2922.  
  2923.    This does mean that the application must determine the correct
  2924. enumerator value; you can't get a howto pointer from a random set of
  2925. attributes.
  2926.  
  2927.    Here are the possible values for `enum bfd_reloc_code_real':
  2928.  
  2929.  -- : BFD_RELOC_64
  2930.  -- : BFD_RELOC_32
  2931.  -- : BFD_RELOC_26
  2932.  -- : BFD_RELOC_24
  2933.  -- : BFD_RELOC_16
  2934.  -- : BFD_RELOC_14
  2935.  -- : BFD_RELOC_8
  2936.      Basic absolute relocations of N bits.
  2937.  
  2938.  -- : BFD_RELOC_64_PCREL
  2939.  -- : BFD_RELOC_32_PCREL
  2940.  -- : BFD_RELOC_24_PCREL
  2941.  -- : BFD_RELOC_16_PCREL
  2942.  -- : BFD_RELOC_12_PCREL
  2943.  -- : BFD_RELOC_8_PCREL
  2944.      PC-relative relocations.  Sometimes these are relative to the
  2945.      address of the relocation itself; sometimes they are relative to
  2946.      the start of the section containing the relocation.  It depends on
  2947.      the specific target.
  2948.  
  2949.      The 24-bit relocation is used in some Intel 960 configurations.
  2950.  
  2951.  -- : BFD_RELOC_32_SECREL
  2952.      Section relative relocations.  Some targets need this for DWARF2.
  2953.  
  2954.  -- : BFD_RELOC_32_GOT_PCREL
  2955.  -- : BFD_RELOC_16_GOT_PCREL
  2956.  -- : BFD_RELOC_8_GOT_PCREL
  2957.  -- : BFD_RELOC_32_GOTOFF
  2958.  -- : BFD_RELOC_16_GOTOFF
  2959.  -- : BFD_RELOC_LO16_GOTOFF
  2960.  -- : BFD_RELOC_HI16_GOTOFF
  2961.  -- : BFD_RELOC_HI16_S_GOTOFF
  2962.  -- : BFD_RELOC_8_GOTOFF
  2963.  -- : BFD_RELOC_64_PLT_PCREL
  2964.  -- : BFD_RELOC_32_PLT_PCREL
  2965.  -- : BFD_RELOC_24_PLT_PCREL
  2966.  -- : BFD_RELOC_16_PLT_PCREL
  2967.  -- : BFD_RELOC_8_PLT_PCREL
  2968.  -- : BFD_RELOC_64_PLTOFF
  2969.  -- : BFD_RELOC_32_PLTOFF
  2970.  -- : BFD_RELOC_16_PLTOFF
  2971.  -- : BFD_RELOC_LO16_PLTOFF
  2972.  -- : BFD_RELOC_HI16_PLTOFF
  2973.  -- : BFD_RELOC_HI16_S_PLTOFF
  2974.  -- : BFD_RELOC_8_PLTOFF
  2975.      For ELF.
  2976.  
  2977.  -- : BFD_RELOC_68K_GLOB_DAT
  2978.  -- : BFD_RELOC_68K_JMP_SLOT
  2979.  -- : BFD_RELOC_68K_RELATIVE
  2980.      Relocations used by 68K ELF.
  2981.  
  2982.  -- : BFD_RELOC_32_BASEREL
  2983.  -- : BFD_RELOC_16_BASEREL
  2984.  -- : BFD_RELOC_LO16_BASEREL
  2985.  -- : BFD_RELOC_HI16_BASEREL
  2986.  -- : BFD_RELOC_HI16_S_BASEREL
  2987.  -- : BFD_RELOC_8_BASEREL
  2988.  -- : BFD_RELOC_RVA
  2989.      Linkage-table relative.
  2990.  
  2991.  -- : BFD_RELOC_8_FFnn
  2992.      Absolute 8-bit relocation, but used to form an address like 0xFFnn.
  2993.  
  2994.  -- : BFD_RELOC_32_PCREL_S2
  2995.  -- : BFD_RELOC_16_PCREL_S2
  2996.  -- : BFD_RELOC_23_PCREL_S2
  2997.      These PC-relative relocations are stored as word displacements -
  2998.      i.e., byte displacements shifted right two bits.  The 30-bit word
  2999.      displacement (<<32_PCREL_S2>> - 32 bits, shifted 2) is used on the
  3000.      SPARC.  (SPARC tools generally refer to this as <<WDISP30>>.)  The
  3001.      signed 16-bit displacement is used on the MIPS, and the 23-bit
  3002.      displacement is used on the Alpha.
  3003.  
  3004.  -- : BFD_RELOC_HI22
  3005.  -- : BFD_RELOC_LO10
  3006.      High 22 bits and low 10 bits of 32-bit value, placed into lower
  3007.      bits of the target word.  These are used on the SPARC.
  3008.  
  3009.  -- : BFD_RELOC_GPREL16
  3010.  -- : BFD_RELOC_GPREL32
  3011.      For systems that allocate a Global Pointer register, these are
  3012.      displacements off that register.  These relocation types are
  3013.      handled specially, because the value the register will have is
  3014.      decided relatively late.
  3015.  
  3016.  -- : BFD_RELOC_I960_CALLJ
  3017.      Reloc types used for i960/b.out.
  3018.  
  3019.  -- : BFD_RELOC_NONE
  3020.  -- : BFD_RELOC_SPARC_WDISP22
  3021.  -- : BFD_RELOC_SPARC22
  3022.  -- : BFD_RELOC_SPARC13
  3023.  -- : BFD_RELOC_SPARC_GOT10
  3024.  -- : BFD_RELOC_SPARC_GOT13
  3025.  -- : BFD_RELOC_SPARC_GOT22
  3026.  -- : BFD_RELOC_SPARC_PC10
  3027.  -- : BFD_RELOC_SPARC_PC22
  3028.  -- : BFD_RELOC_SPARC_WPLT30
  3029.  -- : BFD_RELOC_SPARC_COPY
  3030.  -- : BFD_RELOC_SPARC_GLOB_DAT
  3031.  -- : BFD_RELOC_SPARC_JMP_SLOT
  3032.  -- : BFD_RELOC_SPARC_RELATIVE
  3033.  -- : BFD_RELOC_SPARC_UA16
  3034.  -- : BFD_RELOC_SPARC_UA32
  3035.  -- : BFD_RELOC_SPARC_UA64
  3036.      SPARC ELF relocations.  There is probably some overlap with other
  3037.      relocation types already defined.
  3038.  
  3039.  -- : BFD_RELOC_SPARC_BASE13
  3040.  -- : BFD_RELOC_SPARC_BASE22
  3041.      I think these are specific to SPARC a.out (e.g., Sun 4).
  3042.  
  3043.  -- : BFD_RELOC_SPARC_64
  3044.  -- : BFD_RELOC_SPARC_10
  3045.  -- : BFD_RELOC_SPARC_11
  3046.  -- : BFD_RELOC_SPARC_OLO10
  3047.  -- : BFD_RELOC_SPARC_HH22
  3048.  -- : BFD_RELOC_SPARC_HM10
  3049.  -- : BFD_RELOC_SPARC_LM22
  3050.  -- : BFD_RELOC_SPARC_PC_HH22
  3051.  -- : BFD_RELOC_SPARC_PC_HM10
  3052.  -- : BFD_RELOC_SPARC_PC_LM22
  3053.  -- : BFD_RELOC_SPARC_WDISP16
  3054.  -- : BFD_RELOC_SPARC_WDISP19
  3055.  -- : BFD_RELOC_SPARC_7
  3056.  -- : BFD_RELOC_SPARC_6
  3057.  -- : BFD_RELOC_SPARC_5
  3058.  -- : BFD_RELOC_SPARC_DISP64
  3059.  -- : BFD_RELOC_SPARC_PLT32
  3060.  -- : BFD_RELOC_SPARC_PLT64
  3061.  -- : BFD_RELOC_SPARC_HIX22
  3062.  -- : BFD_RELOC_SPARC_LOX10
  3063.  -- : BFD_RELOC_SPARC_H44
  3064.  -- : BFD_RELOC_SPARC_M44
  3065.  -- : BFD_RELOC_SPARC_L44
  3066.  -- : BFD_RELOC_SPARC_REGISTER
  3067.      SPARC64 relocations
  3068.  
  3069.  -- : BFD_RELOC_SPARC_REV32
  3070.      SPARC little endian relocation
  3071.  
  3072.  -- : BFD_RELOC_SPARC_TLS_GD_HI22
  3073.  -- : BFD_RELOC_SPARC_TLS_GD_LO10
  3074.  -- : BFD_RELOC_SPARC_TLS_GD_ADD
  3075.  -- : BFD_RELOC_SPARC_TLS_GD_CALL
  3076.  -- : BFD_RELOC_SPARC_TLS_LDM_HI22
  3077.  -- : BFD_RELOC_SPARC_TLS_LDM_LO10
  3078.  -- : BFD_RELOC_SPARC_TLS_LDM_ADD
  3079.  -- : BFD_RELOC_SPARC_TLS_LDM_CALL
  3080.  -- : BFD_RELOC_SPARC_TLS_LDO_HIX22
  3081.  -- : BFD_RELOC_SPARC_TLS_LDO_LOX10
  3082.  -- : BFD_RELOC_SPARC_TLS_LDO_ADD
  3083.  -- : BFD_RELOC_SPARC_TLS_IE_HI22
  3084.  -- : BFD_RELOC_SPARC_TLS_IE_LO10
  3085.  -- : BFD_RELOC_SPARC_TLS_IE_LD
  3086.  -- : BFD_RELOC_SPARC_TLS_IE_LDX
  3087.  -- : BFD_RELOC_SPARC_TLS_IE_ADD
  3088.  -- : BFD_RELOC_SPARC_TLS_LE_HIX22
  3089.  -- : BFD_RELOC_SPARC_TLS_LE_LOX10
  3090.  -- : BFD_RELOC_SPARC_TLS_DTPMOD32
  3091.  -- : BFD_RELOC_SPARC_TLS_DTPMOD64
  3092.  -- : BFD_RELOC_SPARC_TLS_DTPOFF32
  3093.  -- : BFD_RELOC_SPARC_TLS_DTPOFF64
  3094.  -- : BFD_RELOC_SPARC_TLS_TPOFF32
  3095.  -- : BFD_RELOC_SPARC_TLS_TPOFF64
  3096.      SPARC TLS relocations
  3097.  
  3098.  -- : BFD_RELOC_ALPHA_GPDISP_HI16
  3099.      Alpha ECOFF and ELF relocations.  Some of these treat the symbol or
  3100.      "addend" in some special way.  For GPDISP_HI16 ("gpdisp")
  3101.      relocations, the symbol is ignored when writing; when reading, it
  3102.      will be the absolute section symbol.  The addend is the
  3103.      displacement in bytes of the "lda" instruction from the "ldah"
  3104.      instruction (which is at the address of this reloc).
  3105.  
  3106.  -- : BFD_RELOC_ALPHA_GPDISP_LO16
  3107.      For GPDISP_LO16 ("ignore") relocations, the symbol is handled as
  3108.      with GPDISP_HI16 relocs.  The addend is ignored when writing the
  3109.      relocations out, and is filled in with the file's GP value on
  3110.      reading, for convenience.
  3111.  
  3112.  -- : BFD_RELOC_ALPHA_GPDISP
  3113.      The ELF GPDISP relocation is exactly the same as the GPDISP_HI16
  3114.      relocation except that there is no accompanying GPDISP_LO16
  3115.      relocation.
  3116.  
  3117.  -- : BFD_RELOC_ALPHA_LITERAL
  3118.  -- : BFD_RELOC_ALPHA_ELF_LITERAL
  3119.  -- : BFD_RELOC_ALPHA_LITUSE
  3120.      The Alpha LITERAL/LITUSE relocs are produced by a symbol reference;
  3121.      the assembler turns it into a LDQ instruction to load the address
  3122.      of the symbol, and then fills in a register in the real
  3123.      instruction.
  3124.  
  3125.      The LITERAL reloc, at the LDQ instruction, refers to the .lita
  3126.      section symbol.  The addend is ignored when writing, but is filled
  3127.      in with the file's GP value on reading, for convenience, as with
  3128.      the GPDISP_LO16 reloc.
  3129.  
  3130.      The ELF_LITERAL reloc is somewhere between 16_GOTOFF and
  3131.      GPDISP_LO16.  It should refer to the symbol to be referenced, as
  3132.      with 16_GOTOFF, but it generates output not based on the position
  3133.      within the .got section, but relative to the GP value chosen for
  3134.      the file during the final link stage.
  3135.  
  3136.      The LITUSE reloc, on the instruction using the loaded address,
  3137.      gives information to the linker that it might be able to use to
  3138.      optimize away some literal section references.  The symbol is
  3139.      ignored (read as the absolute section symbol), and the "addend"
  3140.      indicates the type of instruction using the register: 1 - "memory"
  3141.      fmt insn 2 - byte-manipulation (byte offset reg) 3 - jsr (target
  3142.      of branch)
  3143.  
  3144.  -- : BFD_RELOC_ALPHA_HINT
  3145.      The HINT relocation indicates a value that should be filled into
  3146.      the "hint" field of a jmp/jsr/ret instruction, for possible branch-
  3147.      prediction logic which may be provided on some processors.
  3148.  
  3149.  -- : BFD_RELOC_ALPHA_LINKAGE
  3150.      The LINKAGE relocation outputs a linkage pair in the object file,
  3151.      which is filled by the linker.
  3152.  
  3153.  -- : BFD_RELOC_ALPHA_CODEADDR
  3154.      The CODEADDR relocation outputs a STO_CA in the object file, which
  3155.      is filled by the linker.
  3156.  
  3157.  -- : BFD_RELOC_ALPHA_GPREL_HI16
  3158.  -- : BFD_RELOC_ALPHA_GPREL_LO16
  3159.      The GPREL_HI/LO relocations together form a 32-bit offset from the
  3160.      GP register.
  3161.  
  3162.  -- : BFD_RELOC_ALPHA_BRSGP
  3163.      Like BFD_RELOC_23_PCREL_S2, except that the source and target must
  3164.      share a common GP, and the target address is adjusted for
  3165.      STO_ALPHA_STD_GPLOAD.
  3166.  
  3167.  -- : BFD_RELOC_ALPHA_TLSGD
  3168.  -- : BFD_RELOC_ALPHA_TLSLDM
  3169.  -- : BFD_RELOC_ALPHA_DTPMOD64
  3170.  -- : BFD_RELOC_ALPHA_GOTDTPREL16
  3171.  -- : BFD_RELOC_ALPHA_DTPREL64
  3172.  -- : BFD_RELOC_ALPHA_DTPREL_HI16
  3173.  -- : BFD_RELOC_ALPHA_DTPREL_LO16
  3174.  -- : BFD_RELOC_ALPHA_DTPREL16
  3175.  -- : BFD_RELOC_ALPHA_GOTTPREL16
  3176.  -- : BFD_RELOC_ALPHA_TPREL64
  3177.  -- : BFD_RELOC_ALPHA_TPREL_HI16
  3178.  -- : BFD_RELOC_ALPHA_TPREL_LO16
  3179.  -- : BFD_RELOC_ALPHA_TPREL16
  3180.      Alpha thread-local storage relocations.
  3181.  
  3182.  -- : BFD_RELOC_MIPS_JMP
  3183.      Bits 27..2 of the relocation address shifted right 2 bits; simple
  3184.      reloc otherwise.
  3185.  
  3186.  -- : BFD_RELOC_MIPS16_JMP
  3187.      The MIPS16 jump instruction.
  3188.  
  3189.  -- : BFD_RELOC_MIPS16_GPREL
  3190.      MIPS16 GP relative reloc.
  3191.  
  3192.  -- : BFD_RELOC_HI16
  3193.      High 16 bits of 32-bit value; simple reloc.
  3194.  
  3195.  -- : BFD_RELOC_HI16_S
  3196.      High 16 bits of 32-bit value but the low 16 bits will be sign
  3197.      extended and added to form the final result.  If the low 16 bits
  3198.      form a negative number, we need to add one to the high value to
  3199.      compensate for the borrow when the low bits are added.
  3200.  
  3201.  -- : BFD_RELOC_LO16
  3202.      Low 16 bits.
  3203.  
  3204.  -- : BFD_RELOC_MIPS16_HI16
  3205.      MIPS16 high 16 bits of 32-bit value.
  3206.  
  3207.  -- : BFD_RELOC_MIPS16_HI16_S
  3208.      MIPS16 high 16 bits of 32-bit value but the low 16 bits will be
  3209.      sign extended and added to form the final result.  If the low 16
  3210.      bits form a negative number, we need to add one to the high value
  3211.      to compensate for the borrow when the low bits are added.
  3212.  
  3213.  -- : BFD_RELOC_MIPS16_LO16
  3214.      MIPS16 low 16 bits.
  3215.  
  3216.  -- : BFD_RELOC_MIPS_LITERAL
  3217.      Relocation against a MIPS literal section.
  3218.  
  3219.  -- : BFD_RELOC_MIPS_GOT16
  3220.  -- : BFD_RELOC_MIPS_CALL16
  3221.  -- : BFD_RELOC_MIPS_GOT_HI16
  3222.  -- : BFD_RELOC_MIPS_GOT_LO16
  3223.  -- : BFD_RELOC_MIPS_CALL_HI16
  3224.  -- : BFD_RELOC_MIPS_CALL_LO16
  3225.  -- : BFD_RELOC_MIPS_SUB
  3226.  -- : BFD_RELOC_MIPS_GOT_PAGE
  3227.  -- : BFD_RELOC_MIPS_GOT_OFST
  3228.  -- : BFD_RELOC_MIPS_GOT_DISP
  3229.  -- : BFD_RELOC_MIPS_SHIFT5
  3230.  -- : BFD_RELOC_MIPS_SHIFT6
  3231.  -- : BFD_RELOC_MIPS_INSERT_A
  3232.  -- : BFD_RELOC_MIPS_INSERT_B
  3233.  -- : BFD_RELOC_MIPS_DELETE
  3234.  -- : BFD_RELOC_MIPS_HIGHEST
  3235.  -- : BFD_RELOC_MIPS_HIGHER
  3236.  -- : BFD_RELOC_MIPS_SCN_DISP
  3237.  -- : BFD_RELOC_MIPS_REL16
  3238.  -- : BFD_RELOC_MIPS_RELGOT
  3239.  -- : BFD_RELOC_MIPS_JALR
  3240.  -- : BFD_RELOC_MIPS_TLS_DTPMOD32
  3241.  -- : BFD_RELOC_MIPS_TLS_DTPREL32
  3242.  -- : BFD_RELOC_MIPS_TLS_DTPMOD64
  3243.  -- : BFD_RELOC_MIPS_TLS_DTPREL64
  3244.  -- : BFD_RELOC_MIPS_TLS_GD
  3245.  -- : BFD_RELOC_MIPS_TLS_LDM
  3246.  -- : BFD_RELOC_MIPS_TLS_DTPREL_HI16
  3247.  -- : BFD_RELOC_MIPS_TLS_DTPREL_LO16
  3248.  -- : BFD_RELOC_MIPS_TLS_GOTTPREL
  3249.  -- : BFD_RELOC_MIPS_TLS_TPREL32
  3250.  -- : BFD_RELOC_MIPS_TLS_TPREL64
  3251.  -- : BFD_RELOC_MIPS_TLS_TPREL_HI16
  3252.  -- : BFD_RELOC_MIPS_TLS_TPREL_LO16
  3253.      MIPS ELF relocations.
  3254.  
  3255.  -- : BFD_RELOC_FRV_LABEL16
  3256.  -- : BFD_RELOC_FRV_LABEL24
  3257.  -- : BFD_RELOC_FRV_LO16
  3258.  -- : BFD_RELOC_FRV_HI16
  3259.  -- : BFD_RELOC_FRV_GPREL12
  3260.  -- : BFD_RELOC_FRV_GPRELU12
  3261.  -- : BFD_RELOC_FRV_GPREL32
  3262.  -- : BFD_RELOC_FRV_GPRELHI
  3263.  -- : BFD_RELOC_FRV_GPRELLO
  3264.  -- : BFD_RELOC_FRV_GOT12
  3265.  -- : BFD_RELOC_FRV_GOTHI
  3266.  -- : BFD_RELOC_FRV_GOTLO
  3267.  -- : BFD_RELOC_FRV_FUNCDESC
  3268.  -- : BFD_RELOC_FRV_FUNCDESC_GOT12
  3269.  -- : BFD_RELOC_FRV_FUNCDESC_GOTHI
  3270.  -- : BFD_RELOC_FRV_FUNCDESC_GOTLO
  3271.  -- : BFD_RELOC_FRV_FUNCDESC_VALUE
  3272.  -- : BFD_RELOC_FRV_FUNCDESC_GOTOFF12
  3273.  -- : BFD_RELOC_FRV_FUNCDESC_GOTOFFHI
  3274.  -- : BFD_RELOC_FRV_FUNCDESC_GOTOFFLO
  3275.  -- : BFD_RELOC_FRV_GOTOFF12
  3276.  -- : BFD_RELOC_FRV_GOTOFFHI
  3277.  -- : BFD_RELOC_FRV_GOTOFFLO
  3278.  -- : BFD_RELOC_FRV_GETTLSOFF
  3279.  -- : BFD_RELOC_FRV_TLSDESC_VALUE
  3280.  -- : BFD_RELOC_FRV_GOTTLSDESC12
  3281.  -- : BFD_RELOC_FRV_GOTTLSDESCHI
  3282.  -- : BFD_RELOC_FRV_GOTTLSDESCLO
  3283.  -- : BFD_RELOC_FRV_TLSMOFF12
  3284.  -- : BFD_RELOC_FRV_TLSMOFFHI
  3285.  -- : BFD_RELOC_FRV_TLSMOFFLO
  3286.  -- : BFD_RELOC_FRV_GOTTLSOFF12
  3287.  -- : BFD_RELOC_FRV_GOTTLSOFFHI
  3288.  -- : BFD_RELOC_FRV_GOTTLSOFFLO
  3289.  -- : BFD_RELOC_FRV_TLSOFF
  3290.  -- : BFD_RELOC_FRV_TLSDESC_RELAX
  3291.  -- : BFD_RELOC_FRV_GETTLSOFF_RELAX
  3292.  -- : BFD_RELOC_FRV_TLSOFF_RELAX
  3293.  -- : BFD_RELOC_FRV_TLSMOFF
  3294.      Fujitsu Frv Relocations.
  3295.  
  3296.  -- : BFD_RELOC_MN10300_GOTOFF24
  3297.      This is a 24bit GOT-relative reloc for the mn10300.
  3298.  
  3299.  -- : BFD_RELOC_MN10300_GOT32
  3300.      This is a 32bit GOT-relative reloc for the mn10300, offset by two
  3301.      bytes in the instruction.
  3302.  
  3303.  -- : BFD_RELOC_MN10300_GOT24
  3304.      This is a 24bit GOT-relative reloc for the mn10300, offset by two
  3305.      bytes in the instruction.
  3306.  
  3307.  -- : BFD_RELOC_MN10300_GOT16
  3308.      This is a 16bit GOT-relative reloc for the mn10300, offset by two
  3309.      bytes in the instruction.
  3310.  
  3311.  -- : BFD_RELOC_MN10300_COPY
  3312.      Copy symbol at runtime.
  3313.  
  3314.  -- : BFD_RELOC_MN10300_GLOB_DAT
  3315.      Create GOT entry.
  3316.  
  3317.  -- : BFD_RELOC_MN10300_JMP_SLOT
  3318.      Create PLT entry.
  3319.  
  3320.  -- : BFD_RELOC_MN10300_RELATIVE
  3321.      Adjust by program base.
  3322.  
  3323.  -- : BFD_RELOC_386_GOT32
  3324.  -- : BFD_RELOC_386_PLT32
  3325.  -- : BFD_RELOC_386_COPY
  3326.  -- : BFD_RELOC_386_GLOB_DAT
  3327.  -- : BFD_RELOC_386_JUMP_SLOT
  3328.  -- : BFD_RELOC_386_RELATIVE
  3329.  -- : BFD_RELOC_386_GOTOFF
  3330.  -- : BFD_RELOC_386_GOTPC
  3331.  -- : BFD_RELOC_386_TLS_TPOFF
  3332.  -- : BFD_RELOC_386_TLS_IE
  3333.  -- : BFD_RELOC_386_TLS_GOTIE
  3334.  -- : BFD_RELOC_386_TLS_LE
  3335.  -- : BFD_RELOC_386_TLS_GD
  3336.  -- : BFD_RELOC_386_TLS_LDM
  3337.  -- : BFD_RELOC_386_TLS_LDO_32
  3338.  -- : BFD_RELOC_386_TLS_IE_32
  3339.  -- : BFD_RELOC_386_TLS_LE_32
  3340.  -- : BFD_RELOC_386_TLS_DTPMOD32
  3341.  -- : BFD_RELOC_386_TLS_DTPOFF32
  3342.  -- : BFD_RELOC_386_TLS_TPOFF32
  3343.      i386/elf relocations
  3344.  
  3345.  -- : BFD_RELOC_X86_64_GOT32
  3346.  -- : BFD_RELOC_X86_64_PLT32
  3347.  -- : BFD_RELOC_X86_64_COPY
  3348.  -- : BFD_RELOC_X86_64_GLOB_DAT
  3349.  -- : BFD_RELOC_X86_64_JUMP_SLOT
  3350.  -- : BFD_RELOC_X86_64_RELATIVE
  3351.  -- : BFD_RELOC_X86_64_GOTPCREL
  3352.  -- : BFD_RELOC_X86_64_32S
  3353.  -- : BFD_RELOC_X86_64_DTPMOD64
  3354.  -- : BFD_RELOC_X86_64_DTPOFF64
  3355.  -- : BFD_RELOC_X86_64_TPOFF64
  3356.  -- : BFD_RELOC_X86_64_TLSGD
  3357.  -- : BFD_RELOC_X86_64_TLSLD
  3358.  -- : BFD_RELOC_X86_64_DTPOFF32
  3359.  -- : BFD_RELOC_X86_64_GOTTPOFF
  3360.  -- : BFD_RELOC_X86_64_TPOFF32
  3361.      x86-64/elf relocations
  3362.  
  3363.  -- : BFD_RELOC_NS32K_IMM_8
  3364.  -- : BFD_RELOC_NS32K_IMM_16
  3365.  -- : BFD_RELOC_NS32K_IMM_32
  3366.  -- : BFD_RELOC_NS32K_IMM_8_PCREL
  3367.  -- : BFD_RELOC_NS32K_IMM_16_PCREL
  3368.  -- : BFD_RELOC_NS32K_IMM_32_PCREL
  3369.  -- : BFD_RELOC_NS32K_DISP_8
  3370.  -- : BFD_RELOC_NS32K_DISP_16
  3371.  -- : BFD_RELOC_NS32K_DISP_32
  3372.  -- : BFD_RELOC_NS32K_DISP_8_PCREL
  3373.  -- : BFD_RELOC_NS32K_DISP_16_PCREL
  3374.  -- : BFD_RELOC_NS32K_DISP_32_PCREL
  3375.      ns32k relocations
  3376.  
  3377.  -- : BFD_RELOC_PDP11_DISP_8_PCREL
  3378.  -- : BFD_RELOC_PDP11_DISP_6_PCREL
  3379.      PDP11 relocations
  3380.  
  3381.  -- : BFD_RELOC_PJ_CODE_HI16
  3382.  -- : BFD_RELOC_PJ_CODE_LO16
  3383.  -- : BFD_RELOC_PJ_CODE_DIR16
  3384.  -- : BFD_RELOC_PJ_CODE_DIR32
  3385.  -- : BFD_RELOC_PJ_CODE_REL16
  3386.  -- : BFD_RELOC_PJ_CODE_REL32
  3387.      Picojava relocs.  Not all of these appear in object files.
  3388.  
  3389.  -- : BFD_RELOC_PPC_B26
  3390.  -- : BFD_RELOC_PPC_BA26
  3391.  -- : BFD_RELOC_PPC_TOC16
  3392.  -- : BFD_RELOC_PPC_B16
  3393.  -- : BFD_RELOC_PPC_B16_BRTAKEN
  3394.  -- : BFD_RELOC_PPC_B16_BRNTAKEN
  3395.  -- : BFD_RELOC_PPC_BA16
  3396.  -- : BFD_RELOC_PPC_BA16_BRTAKEN
  3397.  -- : BFD_RELOC_PPC_BA16_BRNTAKEN
  3398.  -- : BFD_RELOC_PPC_COPY
  3399.  -- : BFD_RELOC_PPC_GLOB_DAT
  3400.  -- : BFD_RELOC_PPC_JMP_SLOT
  3401.  -- : BFD_RELOC_PPC_RELATIVE
  3402.  -- : BFD_RELOC_PPC_LOCAL24PC
  3403.  -- : BFD_RELOC_PPC_EMB_NADDR32
  3404.  -- : BFD_RELOC_PPC_EMB_NADDR16
  3405.  -- : BFD_RELOC_PPC_EMB_NADDR16_LO
  3406.  -- : BFD_RELOC_PPC_EMB_NADDR16_HI
  3407.  -- : BFD_RELOC_PPC_EMB_NADDR16_HA
  3408.  -- : BFD_RELOC_PPC_EMB_SDAI16
  3409.  -- : BFD_RELOC_PPC_EMB_SDA2I16
  3410.  -- : BFD_RELOC_PPC_EMB_SDA2REL
  3411.  -- : BFD_RELOC_PPC_EMB_SDA21
  3412.  -- : BFD_RELOC_PPC_EMB_MRKREF
  3413.  -- : BFD_RELOC_PPC_EMB_RELSEC16
  3414.  -- : BFD_RELOC_PPC_EMB_RELST_LO
  3415.  -- : BFD_RELOC_PPC_EMB_RELST_HI
  3416.  -- : BFD_RELOC_PPC_EMB_RELST_HA
  3417.  -- : BFD_RELOC_PPC_EMB_BIT_FLD
  3418.  -- : BFD_RELOC_PPC_EMB_RELSDA
  3419.  -- : BFD_RELOC_PPC64_HIGHER
  3420.  -- : BFD_RELOC_PPC64_HIGHER_S
  3421.  -- : BFD_RELOC_PPC64_HIGHEST
  3422.  -- : BFD_RELOC_PPC64_HIGHEST_S
  3423.  -- : BFD_RELOC_PPC64_TOC16_LO
  3424.  -- : BFD_RELOC_PPC64_TOC16_HI
  3425.  -- : BFD_RELOC_PPC64_TOC16_HA
  3426.  -- : BFD_RELOC_PPC64_TOC
  3427.  -- : BFD_RELOC_PPC64_PLTGOT16
  3428.  -- : BFD_RELOC_PPC64_PLTGOT16_LO
  3429.  -- : BFD_RELOC_PPC64_PLTGOT16_HI
  3430.  -- : BFD_RELOC_PPC64_PLTGOT16_HA
  3431.  -- : BFD_RELOC_PPC64_ADDR16_DS
  3432.  -- : BFD_RELOC_PPC64_ADDR16_LO_DS
  3433.  -- : BFD_RELOC_PPC64_GOT16_DS
  3434.  -- : BFD_RELOC_PPC64_GOT16_LO_DS
  3435.  -- : BFD_RELOC_PPC64_PLT16_LO_DS
  3436.  -- : BFD_RELOC_PPC64_SECTOFF_DS
  3437.  -- : BFD_RELOC_PPC64_SECTOFF_LO_DS
  3438.  -- : BFD_RELOC_PPC64_TOC16_DS
  3439.  -- : BFD_RELOC_PPC64_TOC16_LO_DS
  3440.  -- : BFD_RELOC_PPC64_PLTGOT16_DS
  3441.  -- : BFD_RELOC_PPC64_PLTGOT16_LO_DS
  3442.      Power(rs6000) and PowerPC relocations.
  3443.  
  3444.  -- : BFD_RELOC_PPC_TLS
  3445.  -- : BFD_RELOC_PPC_DTPMOD
  3446.  -- : BFD_RELOC_PPC_TPREL16
  3447.  -- : BFD_RELOC_PPC_TPREL16_LO
  3448.  -- : BFD_RELOC_PPC_TPREL16_HI
  3449.  -- : BFD_RELOC_PPC_TPREL16_HA
  3450.  -- : BFD_RELOC_PPC_TPREL
  3451.  -- : BFD_RELOC_PPC_DTPREL16
  3452.  -- : BFD_RELOC_PPC_DTPREL16_LO
  3453.  -- : BFD_RELOC_PPC_DTPREL16_HI
  3454.  -- : BFD_RELOC_PPC_DTPREL16_HA
  3455.  -- : BFD_RELOC_PPC_DTPREL
  3456.  -- : BFD_RELOC_PPC_GOT_TLSGD16
  3457.  -- : BFD_RELOC_PPC_GOT_TLSGD16_LO
  3458.  -- : BFD_RELOC_PPC_GOT_TLSGD16_HI
  3459.  -- : BFD_RELOC_PPC_GOT_TLSGD16_HA
  3460.  -- : BFD_RELOC_PPC_GOT_TLSLD16
  3461.  -- : BFD_RELOC_PPC_GOT_TLSLD16_LO
  3462.  -- : BFD_RELOC_PPC_GOT_TLSLD16_HI
  3463.  -- : BFD_RELOC_PPC_GOT_TLSLD16_HA
  3464.  -- : BFD_RELOC_PPC_GOT_TPREL16
  3465.  -- : BFD_RELOC_PPC_GOT_TPREL16_LO
  3466.  -- : BFD_RELOC_PPC_GOT_TPREL16_HI
  3467.  -- : BFD_RELOC_PPC_GOT_TPREL16_HA
  3468.  -- : BFD_RELOC_PPC_GOT_DTPREL16
  3469.  -- : BFD_RELOC_PPC_GOT_DTPREL16_LO
  3470.  -- : BFD_RELOC_PPC_GOT_DTPREL16_HI
  3471.  -- : BFD_RELOC_PPC_GOT_DTPREL16_HA
  3472.  -- : BFD_RELOC_PPC64_TPREL16_DS
  3473.  -- : BFD_RELOC_PPC64_TPREL16_LO_DS
  3474.  -- : BFD_RELOC_PPC64_TPREL16_HIGHER
  3475.  -- : BFD_RELOC_PPC64_TPREL16_HIGHERA
  3476.  -- : BFD_RELOC_PPC64_TPREL16_HIGHEST
  3477.  -- : BFD_RELOC_PPC64_TPREL16_HIGHESTA
  3478.  -- : BFD_RELOC_PPC64_DTPREL16_DS
  3479.  -- : BFD_RELOC_PPC64_DTPREL16_LO_DS
  3480.  -- : BFD_RELOC_PPC64_DTPREL16_HIGHER
  3481.  -- : BFD_RELOC_PPC64_DTPREL16_HIGHERA
  3482.  -- : BFD_RELOC_PPC64_DTPREL16_HIGHEST
  3483.  -- : BFD_RELOC_PPC64_DTPREL16_HIGHESTA
  3484.      PowerPC and PowerPC64 thread-local storage relocations.
  3485.  
  3486.  -- : BFD_RELOC_I370_D12
  3487.      IBM 370/390 relocations
  3488.  
  3489.  -- : BFD_RELOC_CTOR
  3490.      The type of reloc used to build a constructor table - at the moment
  3491.      probably a 32 bit wide absolute relocation, but the target can
  3492.      choose.  It generally does map to one of the other relocation
  3493.      types.
  3494.  
  3495.  -- : BFD_RELOC_ARM_PCREL_BRANCH
  3496.      ARM 26 bit pc-relative branch.  The lowest two bits must be zero
  3497.      and are not stored in the instruction.
  3498.  
  3499.  -- : BFD_RELOC_ARM_PCREL_BLX
  3500.      ARM 26 bit pc-relative branch.  The lowest bit must be zero and is
  3501.      not stored in the instruction.  The 2nd lowest bit comes from a 1
  3502.      bit field in the instruction.
  3503.  
  3504.  -- : BFD_RELOC_THUMB_PCREL_BLX
  3505.      Thumb 22 bit pc-relative branch.  The lowest bit must be zero and
  3506.      is not stored in the instruction.  The 2nd lowest bit comes from a
  3507.      1 bit field in the instruction.
  3508.  
  3509.  -- : BFD_RELOC_ARM_IMMEDIATE
  3510.  -- : BFD_RELOC_ARM_ADRL_IMMEDIATE
  3511.  -- : BFD_RELOC_ARM_OFFSET_IMM
  3512.  -- : BFD_RELOC_ARM_SHIFT_IMM
  3513.  -- : BFD_RELOC_ARM_SMI
  3514.  -- : BFD_RELOC_ARM_SWI
  3515.  -- : BFD_RELOC_ARM_MULTI
  3516.  -- : BFD_RELOC_ARM_CP_OFF_IMM
  3517.  -- : BFD_RELOC_ARM_CP_OFF_IMM_S2
  3518.  -- : BFD_RELOC_ARM_ADR_IMM
  3519.  -- : BFD_RELOC_ARM_LDR_IMM
  3520.  -- : BFD_RELOC_ARM_LITERAL
  3521.  -- : BFD_RELOC_ARM_IN_POOL
  3522.  -- : BFD_RELOC_ARM_OFFSET_IMM8
  3523.  -- : BFD_RELOC_ARM_HWLITERAL
  3524.  -- : BFD_RELOC_ARM_THUMB_ADD
  3525.  -- : BFD_RELOC_ARM_THUMB_IMM
  3526.  -- : BFD_RELOC_ARM_THUMB_SHIFT
  3527.  -- : BFD_RELOC_ARM_THUMB_OFFSET
  3528.  -- : BFD_RELOC_ARM_GOT12
  3529.  -- : BFD_RELOC_ARM_GOT32
  3530.  -- : BFD_RELOC_ARM_JUMP_SLOT
  3531.  -- : BFD_RELOC_ARM_COPY
  3532.  -- : BFD_RELOC_ARM_GLOB_DAT
  3533.  -- : BFD_RELOC_ARM_PLT32
  3534.  -- : BFD_RELOC_ARM_RELATIVE
  3535.  -- : BFD_RELOC_ARM_GOTOFF
  3536.  -- : BFD_RELOC_ARM_GOTPC
  3537.      These relocs are only used within the ARM assembler.  They are not
  3538.      (at present) written to any object files.
  3539.  
  3540.  -- : BFD_RELOC_ARM_TARGET1
  3541.      Pc-relative or absolute relocation depending on target.  Used for
  3542.      entries in .init_array sections.
  3543.  
  3544.  -- : BFD_RELOC_ARM_ROSEGREL32
  3545.      Read-only segment base relative address.
  3546.  
  3547.  -- : BFD_RELOC_ARM_SBREL32
  3548.      Data segment base relative address.
  3549.  
  3550.  -- : BFD_RELOC_ARM_TARGET2
  3551.      This reloc is used for References to RTTI dta from exception
  3552.      handling tables.  The actual definition depends on the target.  It
  3553.      may be a pc-relative or some form of GOT-indirect relocation.
  3554.  
  3555.  -- : BFD_RELOC_ARM_PREL31
  3556.      31-bit PC relative address.
  3557.  
  3558.  -- : BFD_RELOC_SH_PCDISP8BY2
  3559.  -- : BFD_RELOC_SH_PCDISP12BY2
  3560.  -- : BFD_RELOC_SH_IMM3
  3561.  -- : BFD_RELOC_SH_IMM3U
  3562.  -- : BFD_RELOC_SH_DISP12
  3563.  -- : BFD_RELOC_SH_DISP12BY2
  3564.  -- : BFD_RELOC_SH_DISP12BY4
  3565.  -- : BFD_RELOC_SH_DISP12BY8
  3566.  -- : BFD_RELOC_SH_DISP20
  3567.  -- : BFD_RELOC_SH_DISP20BY8
  3568.  -- : BFD_RELOC_SH_IMM4
  3569.  -- : BFD_RELOC_SH_IMM4BY2
  3570.  -- : BFD_RELOC_SH_IMM4BY4
  3571.  -- : BFD_RELOC_SH_IMM8
  3572.  -- : BFD_RELOC_SH_IMM8BY2
  3573.  -- : BFD_RELOC_SH_IMM8BY4
  3574.  -- : BFD_RELOC_SH_PCRELIMM8BY2
  3575.  -- : BFD_RELOC_SH_PCRELIMM8BY4
  3576.  -- : BFD_RELOC_SH_SWITCH16
  3577.  -- : BFD_RELOC_SH_SWITCH32
  3578.  -- : BFD_RELOC_SH_USES
  3579.  -- : BFD_RELOC_SH_COUNT
  3580.  -- : BFD_RELOC_SH_ALIGN
  3581.  -- : BFD_RELOC_SH_CODE
  3582.  -- : BFD_RELOC_SH_DATA
  3583.  -- : BFD_RELOC_SH_LABEL
  3584.  -- : BFD_RELOC_SH_LOOP_START
  3585.  -- : BFD_RELOC_SH_LOOP_END
  3586.  -- : BFD_RELOC_SH_COPY
  3587.  -- : BFD_RELOC_SH_GLOB_DAT
  3588.  -- : BFD_RELOC_SH_JMP_SLOT
  3589.  -- : BFD_RELOC_SH_RELATIVE
  3590.  -- : BFD_RELOC_SH_GOTPC
  3591.  -- : BFD_RELOC_SH_GOT_LOW16
  3592.  -- : BFD_RELOC_SH_GOT_MEDLOW16
  3593.  -- : BFD_RELOC_SH_GOT_MEDHI16
  3594.  -- : BFD_RELOC_SH_GOT_HI16
  3595.  -- : BFD_RELOC_SH_GOTPLT_LOW16
  3596.  -- : BFD_RELOC_SH_GOTPLT_MEDLOW16
  3597.  -- : BFD_RELOC_SH_GOTPLT_MEDHI16
  3598.  -- : BFD_RELOC_SH_GOTPLT_HI16
  3599.  -- : BFD_RELOC_SH_PLT_LOW16
  3600.  -- : BFD_RELOC_SH_PLT_MEDLOW16
  3601.  -- : BFD_RELOC_SH_PLT_MEDHI16
  3602.  -- : BFD_RELOC_SH_PLT_HI16
  3603.  -- : BFD_RELOC_SH_GOTOFF_LOW16
  3604.  -- : BFD_RELOC_SH_GOTOFF_MEDLOW16
  3605.  -- : BFD_RELOC_SH_GOTOFF_MEDHI16
  3606.  -- : BFD_RELOC_SH_GOTOFF_HI16
  3607.  -- : BFD_RELOC_SH_GOTPC_LOW16
  3608.  -- : BFD_RELOC_SH_GOTPC_MEDLOW16
  3609.  -- : BFD_RELOC_SH_GOTPC_MEDHI16
  3610.  -- : BFD_RELOC_SH_GOTPC_HI16
  3611.  -- : BFD_RELOC_SH_COPY64
  3612.  -- : BFD_RELOC_SH_GLOB_DAT64
  3613.  -- : BFD_RELOC_SH_JMP_SLOT64
  3614.  -- : BFD_RELOC_SH_RELATIVE64
  3615.  -- : BFD_RELOC_SH_GOT10BY4
  3616.  -- : BFD_RELOC_SH_GOT10BY8
  3617.  -- : BFD_RELOC_SH_GOTPLT10BY4
  3618.  -- : BFD_RELOC_SH_GOTPLT10BY8
  3619.  -- : BFD_RELOC_SH_GOTPLT32
  3620.  -- : BFD_RELOC_SH_SHMEDIA_CODE
  3621.  -- : BFD_RELOC_SH_IMMU5
  3622.  -- : BFD_RELOC_SH_IMMS6
  3623.  -- : BFD_RELOC_SH_IMMS6BY32
  3624.  -- : BFD_RELOC_SH_IMMU6
  3625.  -- : BFD_RELOC_SH_IMMS10
  3626.  -- : BFD_RELOC_SH_IMMS10BY2
  3627.  -- : BFD_RELOC_SH_IMMS10BY4
  3628.  -- : BFD_RELOC_SH_IMMS10BY8
  3629.  -- : BFD_RELOC_SH_IMMS16
  3630.  -- : BFD_RELOC_SH_IMMU16
  3631.  -- : BFD_RELOC_SH_IMM_LOW16
  3632.  -- : BFD_RELOC_SH_IMM_LOW16_PCREL
  3633.  -- : BFD_RELOC_SH_IMM_MEDLOW16
  3634.  -- : BFD_RELOC_SH_IMM_MEDLOW16_PCREL
  3635.  -- : BFD_RELOC_SH_IMM_MEDHI16
  3636.  -- : BFD_RELOC_SH_IMM_MEDHI16_PCREL
  3637.  -- : BFD_RELOC_SH_IMM_HI16
  3638.  -- : BFD_RELOC_SH_IMM_HI16_PCREL
  3639.  -- : BFD_RELOC_SH_PT_16
  3640.  -- : BFD_RELOC_SH_TLS_GD_32
  3641.  -- : BFD_RELOC_SH_TLS_LD_32
  3642.  -- : BFD_RELOC_SH_TLS_LDO_32
  3643.  -- : BFD_RELOC_SH_TLS_IE_32
  3644.  -- : BFD_RELOC_SH_TLS_LE_32
  3645.  -- : BFD_RELOC_SH_TLS_DTPMOD32
  3646.  -- : BFD_RELOC_SH_TLS_DTPOFF32
  3647.  -- : BFD_RELOC_SH_TLS_TPOFF32
  3648.      Renesas / SuperH SH relocs.  Not all of these appear in object
  3649.      files.
  3650.  
  3651.  -- : BFD_RELOC_THUMB_PCREL_BRANCH9
  3652.  -- : BFD_RELOC_THUMB_PCREL_BRANCH12
  3653.  -- : BFD_RELOC_THUMB_PCREL_BRANCH23
  3654.      Thumb 23-, 12- and 9-bit pc-relative branches.  The lowest bit must
  3655.      be zero and is not stored in the instruction.
  3656.  
  3657.  -- : BFD_RELOC_ARC_B22_PCREL
  3658.      ARC Cores relocs.  ARC 22 bit pc-relative branch.  The lowest two
  3659.      bits must be zero and are not stored in the instruction.  The high
  3660.      20 bits are installed in bits 26 through 7 of the instruction.
  3661.  
  3662.  -- : BFD_RELOC_ARC_B26
  3663.      ARC 26 bit absolute branch.  The lowest two bits must be zero and
  3664.      are not stored in the instruction.  The high 24 bits are installed
  3665.      in bits 23 through 0.
  3666.  
  3667.  -- : BFD_RELOC_D10V_10_PCREL_R
  3668.      Mitsubishi D10V relocs.  This is a 10-bit reloc with the right 2
  3669.      bits assumed to be 0.
  3670.  
  3671.  -- : BFD_RELOC_D10V_10_PCREL_L
  3672.      Mitsubishi D10V relocs.  This is a 10-bit reloc with the right 2
  3673.      bits assumed to be 0.  This is the same as the previous reloc
  3674.      except it is in the left container, i.e., shifted left 15 bits.
  3675.  
  3676.  -- : BFD_RELOC_D10V_18
  3677.      This is an 18-bit reloc with the right 2 bits assumed to be 0.
  3678.  
  3679.  -- : BFD_RELOC_D10V_18_PCREL
  3680.      This is an 18-bit reloc with the right 2 bits assumed to be 0.
  3681.  
  3682.  -- : BFD_RELOC_D30V_6
  3683.      Mitsubishi D30V relocs.  This is a 6-bit absolute reloc.
  3684.  
  3685.  -- : BFD_RELOC_D30V_9_PCREL
  3686.      This is a 6-bit pc-relative reloc with the right 3 bits assumed to
  3687.      be 0.
  3688.  
  3689.  -- : BFD_RELOC_D30V_9_PCREL_R
  3690.      This is a 6-bit pc-relative reloc with the right 3 bits assumed to
  3691.      be 0. Same as the previous reloc but on the right side of the
  3692.      container.
  3693.  
  3694.  -- : BFD_RELOC_D30V_15
  3695.      This is a 12-bit absolute reloc with the right 3 bitsassumed to be
  3696.      0.
  3697.  
  3698.  -- : BFD_RELOC_D30V_15_PCREL
  3699.      This is a 12-bit pc-relative reloc with the right 3 bits assumed
  3700.      to be 0.
  3701.  
  3702.  -- : BFD_RELOC_D30V_15_PCREL_R
  3703.      This is a 12-bit pc-relative reloc with the right 3 bits assumed
  3704.      to be 0. Same as the previous reloc but on the right side of the
  3705.      container.
  3706.  
  3707.  -- : BFD_RELOC_D30V_21
  3708.      This is an 18-bit absolute reloc with the right 3 bits assumed to
  3709.      be 0.
  3710.  
  3711.  -- : BFD_RELOC_D30V_21_PCREL
  3712.      This is an 18-bit pc-relative reloc with the right 3 bits assumed
  3713.      to be 0.
  3714.  
  3715.  -- : BFD_RELOC_D30V_21_PCREL_R
  3716.      This is an 18-bit pc-relative reloc with the right 3 bits assumed
  3717.      to be 0. Same as the previous reloc but on the right side of the
  3718.      container.
  3719.  
  3720.  -- : BFD_RELOC_D30V_32
  3721.      This is a 32-bit absolute reloc.
  3722.  
  3723.  -- : BFD_RELOC_D30V_32_PCREL
  3724.      This is a 32-bit pc-relative reloc.
  3725.  
  3726.  -- : BFD_RELOC_DLX_HI16_S
  3727.      DLX relocs
  3728.  
  3729.  -- : BFD_RELOC_DLX_LO16
  3730.      DLX relocs
  3731.  
  3732.  -- : BFD_RELOC_DLX_JMP26
  3733.      DLX relocs
  3734.  
  3735.  -- : BFD_RELOC_M32R_24
  3736.      Renesas M32R (formerly Mitsubishi M32R) relocs.  This is a 24 bit
  3737.      absolute address.
  3738.  
  3739.  -- : BFD_RELOC_M32R_10_PCREL
  3740.      This is a 10-bit pc-relative reloc with the right 2 bits assumed
  3741.      to be 0.
  3742.  
  3743.  -- : BFD_RELOC_M32R_18_PCREL
  3744.      This is an 18-bit reloc with the right 2 bits assumed to be 0.
  3745.  
  3746.  -- : BFD_RELOC_M32R_26_PCREL
  3747.      This is a 26-bit reloc with the right 2 bits assumed to be 0.
  3748.  
  3749.  -- : BFD_RELOC_M32R_HI16_ULO
  3750.      This is a 16-bit reloc containing the high 16 bits of an address
  3751.      used when the lower 16 bits are treated as unsigned.
  3752.  
  3753.  -- : BFD_RELOC_M32R_HI16_SLO
  3754.      This is a 16-bit reloc containing the high 16 bits of an address
  3755.      used when the lower 16 bits are treated as signed.
  3756.  
  3757.  -- : BFD_RELOC_M32R_LO16
  3758.      This is a 16-bit reloc containing the lower 16 bits of an address.
  3759.  
  3760.  -- : BFD_RELOC_M32R_SDA16
  3761.      This is a 16-bit reloc containing the small data area offset for
  3762.      use in add3, load, and store instructions.
  3763.  
  3764.  -- : BFD_RELOC_M32R_GOT24
  3765.  -- : BFD_RELOC_M32R_26_PLTREL
  3766.  -- : BFD_RELOC_M32R_COPY
  3767.  -- : BFD_RELOC_M32R_GLOB_DAT
  3768.  -- : BFD_RELOC_M32R_JMP_SLOT
  3769.  -- : BFD_RELOC_M32R_RELATIVE
  3770.  -- : BFD_RELOC_M32R_GOTOFF
  3771.  -- : BFD_RELOC_M32R_GOTOFF_HI_ULO
  3772.  -- : BFD_RELOC_M32R_GOTOFF_HI_SLO
  3773.  -- : BFD_RELOC_M32R_GOTOFF_LO
  3774.  -- : BFD_RELOC_M32R_GOTPC24
  3775.  -- : BFD_RELOC_M32R_GOT16_HI_ULO
  3776.  -- : BFD_RELOC_M32R_GOT16_HI_SLO
  3777.  -- : BFD_RELOC_M32R_GOT16_LO
  3778.  -- : BFD_RELOC_M32R_GOTPC_HI_ULO
  3779.  -- : BFD_RELOC_M32R_GOTPC_HI_SLO
  3780.  -- : BFD_RELOC_M32R_GOTPC_LO
  3781.      For PIC.
  3782.  
  3783.  -- : BFD_RELOC_V850_9_PCREL
  3784.      This is a 9-bit reloc
  3785.  
  3786.  -- : BFD_RELOC_V850_22_PCREL
  3787.      This is a 22-bit reloc
  3788.  
  3789.  -- : BFD_RELOC_V850_SDA_16_16_OFFSET
  3790.      This is a 16 bit offset from the short data area pointer.
  3791.  
  3792.  -- : BFD_RELOC_V850_SDA_15_16_OFFSET
  3793.      This is a 16 bit offset (of which only 15 bits are used) from the
  3794.      short data area pointer.
  3795.  
  3796.  -- : BFD_RELOC_V850_ZDA_16_16_OFFSET
  3797.      This is a 16 bit offset from the zero data area pointer.
  3798.  
  3799.  -- : BFD_RELOC_V850_ZDA_15_16_OFFSET
  3800.      This is a 16 bit offset (of which only 15 bits are used) from the
  3801.      zero data area pointer.
  3802.  
  3803.  -- : BFD_RELOC_V850_TDA_6_8_OFFSET
  3804.      This is an 8 bit offset (of which only 6 bits are used) from the
  3805.      tiny data area pointer.
  3806.  
  3807.  -- : BFD_RELOC_V850_TDA_7_8_OFFSET
  3808.      This is an 8bit offset (of which only 7 bits are used) from the
  3809.      tiny data area pointer.
  3810.  
  3811.  -- : BFD_RELOC_V850_TDA_7_7_OFFSET
  3812.      This is a 7 bit offset from the tiny data area pointer.
  3813.  
  3814.  -- : BFD_RELOC_V850_TDA_16_16_OFFSET
  3815.      This is a 16 bit offset from the tiny data area pointer.
  3816.  
  3817.  -- : BFD_RELOC_V850_TDA_4_5_OFFSET
  3818.      This is a 5 bit offset (of which only 4 bits are used) from the
  3819.      tiny data area pointer.
  3820.  
  3821.  -- : BFD_RELOC_V850_TDA_4_4_OFFSET
  3822.      This is a 4 bit offset from the tiny data area pointer.
  3823.  
  3824.  -- : BFD_RELOC_V850_SDA_16_16_SPLIT_OFFSET
  3825.      This is a 16 bit offset from the short data area pointer, with the
  3826.      bits placed non-contiguously in the instruction.
  3827.  
  3828.  -- : BFD_RELOC_V850_ZDA_16_16_SPLIT_OFFSET
  3829.      This is a 16 bit offset from the zero data area pointer, with the
  3830.      bits placed non-contiguously in the instruction.
  3831.  
  3832.  -- : BFD_RELOC_V850_CALLT_6_7_OFFSET
  3833.      This is a 6 bit offset from the call table base pointer.
  3834.  
  3835.  -- : BFD_RELOC_V850_CALLT_16_16_OFFSET
  3836.      This is a 16 bit offset from the call table base pointer.
  3837.  
  3838.  -- : BFD_RELOC_V850_LONGCALL
  3839.      Used for relaxing indirect function calls.
  3840.  
  3841.  -- : BFD_RELOC_V850_LONGJUMP
  3842.      Used for relaxing indirect jumps.
  3843.  
  3844.  -- : BFD_RELOC_V850_ALIGN
  3845.      Used to maintain alignment whilst relaxing.
  3846.  
  3847.  -- : BFD_RELOC_V850_LO16_SPLIT_OFFSET
  3848.      This is a variation of BFD_RELOC_LO16 that can be used in v850e
  3849.      ld.bu instructions.
  3850.  
  3851.  -- : BFD_RELOC_MN10300_32_PCREL
  3852.      This is a 32bit pcrel reloc for the mn10300, offset by two bytes
  3853.      in the instruction.
  3854.  
  3855.  -- : BFD_RELOC_MN10300_16_PCREL
  3856.      This is a 16bit pcrel reloc for the mn10300, offset by two bytes
  3857.      in the instruction.
  3858.  
  3859.  -- : BFD_RELOC_TIC30_LDP
  3860.      This is a 8bit DP reloc for the tms320c30, where the most
  3861.      significant 8 bits of a 24 bit word are placed into the least
  3862.      significant 8 bits of the opcode.
  3863.  
  3864.  -- : BFD_RELOC_TIC54X_PARTLS7
  3865.      This is a 7bit reloc for the tms320c54x, where the least
  3866.      significant 7 bits of a 16 bit word are placed into the least
  3867.      significant 7 bits of the opcode.
  3868.  
  3869.  -- : BFD_RELOC_TIC54X_PARTMS9
  3870.      This is a 9bit DP reloc for the tms320c54x, where the most
  3871.      significant 9 bits of a 16 bit word are placed into the least
  3872.      significant 9 bits of the opcode.
  3873.  
  3874.  -- : BFD_RELOC_TIC54X_23
  3875.      This is an extended address 23-bit reloc for the tms320c54x.
  3876.  
  3877.  -- : BFD_RELOC_TIC54X_16_OF_23
  3878.      This is a 16-bit reloc for the tms320c54x, where the least
  3879.      significant 16 bits of a 23-bit extended address are placed into
  3880.      the opcode.
  3881.  
  3882.  -- : BFD_RELOC_TIC54X_MS7_OF_23
  3883.      This is a reloc for the tms320c54x, where the most significant 7
  3884.      bits of a 23-bit extended address are placed into the opcode.
  3885.  
  3886.  -- : BFD_RELOC_FR30_48
  3887.      This is a 48 bit reloc for the FR30 that stores 32 bits.
  3888.  
  3889.  -- : BFD_RELOC_FR30_20
  3890.      This is a 32 bit reloc for the FR30 that stores 20 bits split up
  3891.      into two sections.
  3892.  
  3893.  -- : BFD_RELOC_FR30_6_IN_4
  3894.      This is a 16 bit reloc for the FR30 that stores a 6 bit word
  3895.      offset in 4 bits.
  3896.  
  3897.  -- : BFD_RELOC_FR30_8_IN_8
  3898.      This is a 16 bit reloc for the FR30 that stores an 8 bit byte
  3899.      offset into 8 bits.
  3900.  
  3901.  -- : BFD_RELOC_FR30_9_IN_8
  3902.      This is a 16 bit reloc for the FR30 that stores a 9 bit short
  3903.      offset into 8 bits.
  3904.  
  3905.  -- : BFD_RELOC_FR30_10_IN_8
  3906.      This is a 16 bit reloc for the FR30 that stores a 10 bit word
  3907.      offset into 8 bits.
  3908.  
  3909.  -- : BFD_RELOC_FR30_9_PCREL
  3910.      This is a 16 bit reloc for the FR30 that stores a 9 bit pc relative
  3911.      short offset into 8 bits.
  3912.  
  3913.  -- : BFD_RELOC_FR30_12_PCREL
  3914.      This is a 16 bit reloc for the FR30 that stores a 12 bit pc
  3915.      relative short offset into 11 bits.
  3916.  
  3917.  -- : BFD_RELOC_MCORE_PCREL_IMM8BY4
  3918.  -- : BFD_RELOC_MCORE_PCREL_IMM11BY2
  3919.  -- : BFD_RELOC_MCORE_PCREL_IMM4BY2
  3920.  -- : BFD_RELOC_MCORE_PCREL_32
  3921.  -- : BFD_RELOC_MCORE_PCREL_JSR_IMM11BY2
  3922.  -- : BFD_RELOC_MCORE_RVA
  3923.      Motorola Mcore relocations.
  3924.  
  3925.  -- : BFD_RELOC_MMIX_GETA
  3926.  -- : BFD_RELOC_MMIX_GETA_1
  3927.  -- : BFD_RELOC_MMIX_GETA_2
  3928.  -- : BFD_RELOC_MMIX_GETA_3
  3929.      These are relocations for the GETA instruction.
  3930.  
  3931.  -- : BFD_RELOC_MMIX_CBRANCH
  3932.  -- : BFD_RELOC_MMIX_CBRANCH_J
  3933.  -- : BFD_RELOC_MMIX_CBRANCH_1
  3934.  -- : BFD_RELOC_MMIX_CBRANCH_2
  3935.  -- : BFD_RELOC_MMIX_CBRANCH_3
  3936.      These are relocations for a conditional branch instruction.
  3937.  
  3938.  -- : BFD_RELOC_MMIX_PUSHJ
  3939.  -- : BFD_RELOC_MMIX_PUSHJ_1
  3940.  -- : BFD_RELOC_MMIX_PUSHJ_2
  3941.  -- : BFD_RELOC_MMIX_PUSHJ_3
  3942.  -- : BFD_RELOC_MMIX_PUSHJ_STUBBABLE
  3943.      These are relocations for the PUSHJ instruction.
  3944.  
  3945.  -- : BFD_RELOC_MMIX_JMP
  3946.  -- : BFD_RELOC_MMIX_JMP_1
  3947.  -- : BFD_RELOC_MMIX_JMP_2
  3948.  -- : BFD_RELOC_MMIX_JMP_3
  3949.      These are relocations for the JMP instruction.
  3950.  
  3951.  -- : BFD_RELOC_MMIX_ADDR19
  3952.      This is a relocation for a relative address as in a GETA
  3953.      instruction or a branch.
  3954.  
  3955.  -- : BFD_RELOC_MMIX_ADDR27
  3956.      This is a relocation for a relative address as in a JMP
  3957.      instruction.
  3958.  
  3959.  -- : BFD_RELOC_MMIX_REG_OR_BYTE
  3960.      This is a relocation for an instruction field that may be a general
  3961.      register or a value 0..255.
  3962.  
  3963.  -- : BFD_RELOC_MMIX_REG
  3964.      This is a relocation for an instruction field that may be a general
  3965.      register.
  3966.  
  3967.  -- : BFD_RELOC_MMIX_BASE_PLUS_OFFSET
  3968.      This is a relocation for two instruction fields holding a register
  3969.      and an offset, the equivalent of the relocation.
  3970.  
  3971.  -- : BFD_RELOC_MMIX_LOCAL
  3972.      This relocation is an assertion that the expression is not
  3973.      allocated as a global register.  It does not modify contents.
  3974.  
  3975.  -- : BFD_RELOC_AVR_7_PCREL
  3976.      This is a 16 bit reloc for the AVR that stores 8 bit pc relative
  3977.      short offset into 7 bits.
  3978.  
  3979.  -- : BFD_RELOC_AVR_13_PCREL
  3980.      This is a 16 bit reloc for the AVR that stores 13 bit pc relative
  3981.      short offset into 12 bits.
  3982.  
  3983.  -- : BFD_RELOC_AVR_16_PM
  3984.      This is a 16 bit reloc for the AVR that stores 17 bit value
  3985.      (usually program memory address) into 16 bits.
  3986.  
  3987.  -- : BFD_RELOC_AVR_LO8_LDI
  3988.      This is a 16 bit reloc for the AVR that stores 8 bit value (usually
  3989.      data memory address) into 8 bit immediate value of LDI insn.
  3990.  
  3991.  -- : BFD_RELOC_AVR_HI8_LDI
  3992.      This is a 16 bit reloc for the AVR that stores 8 bit value (high 8
  3993.      bit of data memory address) into 8 bit immediate value of LDI insn.
  3994.  
  3995.  -- : BFD_RELOC_AVR_HH8_LDI
  3996.      This is a 16 bit reloc for the AVR that stores 8 bit value (most
  3997.      high 8 bit of program memory address) into 8 bit immediate value
  3998.      of LDI insn.
  3999.  
  4000.  -- : BFD_RELOC_AVR_LO8_LDI_NEG
  4001.      This is a 16 bit reloc for the AVR that stores negated 8 bit value
  4002.      (usually data memory address) into 8 bit immediate value of SUBI
  4003.      insn.
  4004.  
  4005.  -- : BFD_RELOC_AVR_HI8_LDI_NEG
  4006.      This is a 16 bit reloc for the AVR that stores negated 8 bit value
  4007.      (high 8 bit of data memory address) into 8 bit immediate value of
  4008.      SUBI insn.
  4009.  
  4010.  -- : BFD_RELOC_AVR_HH8_LDI_NEG
  4011.      This is a 16 bit reloc for the AVR that stores negated 8 bit value
  4012.      (most high 8 bit of program memory address) into 8 bit immediate
  4013.      value of LDI or SUBI insn.
  4014.  
  4015.  -- : BFD_RELOC_AVR_LO8_LDI_PM
  4016.      This is a 16 bit reloc for the AVR that stores 8 bit value (usually
  4017.      command address) into 8 bit immediate value of LDI insn.
  4018.  
  4019.  -- : BFD_RELOC_AVR_HI8_LDI_PM
  4020.      This is a 16 bit reloc for the AVR that stores 8 bit value (high 8
  4021.      bit of command address) into 8 bit immediate value of LDI insn.
  4022.  
  4023.  -- : BFD_RELOC_AVR_HH8_LDI_PM
  4024.      This is a 16 bit reloc for the AVR that stores 8 bit value (most
  4025.      high 8 bit of command address) into 8 bit immediate value of LDI
  4026.      insn.
  4027.  
  4028.  -- : BFD_RELOC_AVR_LO8_LDI_PM_NEG
  4029.      This is a 16 bit reloc for the AVR that stores negated 8 bit value
  4030.      (usually command address) into 8 bit immediate value of SUBI insn.
  4031.  
  4032.  -- : BFD_RELOC_AVR_HI8_LDI_PM_NEG
  4033.      This is a 16 bit reloc for the AVR that stores negated 8 bit value
  4034.      (high 8 bit of 16 bit command address) into 8 bit immediate value
  4035.      of SUBI insn.
  4036.  
  4037.  -- : BFD_RELOC_AVR_HH8_LDI_PM_NEG
  4038.      This is a 16 bit reloc for the AVR that stores negated 8 bit value
  4039.      (high 6 bit of 22 bit command address) into 8 bit immediate value
  4040.      of SUBI insn.
  4041.  
  4042.  -- : BFD_RELOC_AVR_CALL
  4043.      This is a 32 bit reloc for the AVR that stores 23 bit value into
  4044.      22 bits.
  4045.  
  4046.  -- : BFD_RELOC_AVR_LDI
  4047.      This is a 16 bit reloc for the AVR that stores all needed bits for
  4048.      absolute addressing with ldi with overflow check to linktime
  4049.  
  4050.  -- : BFD_RELOC_AVR_6
  4051.      This is a 6 bit reloc for the AVR that stores offset for ldd/std
  4052.      instructions
  4053.  
  4054.  -- : BFD_RELOC_AVR_6_ADIW
  4055.      This is a 6 bit reloc for the AVR that stores offset for adiw/sbiw
  4056.      instructions
  4057.  
  4058.  -- : BFD_RELOC_390_12
  4059.      Direct 12 bit.
  4060.  
  4061.  -- : BFD_RELOC_390_GOT12
  4062.      12 bit GOT offset.
  4063.  
  4064.  -- : BFD_RELOC_390_PLT32
  4065.      32 bit PC relative PLT address.
  4066.  
  4067.  -- : BFD_RELOC_390_COPY
  4068.      Copy symbol at runtime.
  4069.  
  4070.  -- : BFD_RELOC_390_GLOB_DAT
  4071.      Create GOT entry.
  4072.  
  4073.  -- : BFD_RELOC_390_JMP_SLOT
  4074.      Create PLT entry.
  4075.  
  4076.  -- : BFD_RELOC_390_RELATIVE
  4077.      Adjust by program base.
  4078.  
  4079.  -- : BFD_RELOC_390_GOTPC
  4080.      32 bit PC relative offset to GOT.
  4081.  
  4082.  -- : BFD_RELOC_390_GOT16
  4083.      16 bit GOT offset.
  4084.  
  4085.  -- : BFD_RELOC_390_PC16DBL
  4086.      PC relative 16 bit shifted by 1.
  4087.  
  4088.  -- : BFD_RELOC_390_PLT16DBL
  4089.      16 bit PC rel. PLT shifted by 1.
  4090.  
  4091.  -- : BFD_RELOC_390_PC32DBL
  4092.      PC relative 32 bit shifted by 1.
  4093.  
  4094.  -- : BFD_RELOC_390_PLT32DBL
  4095.      32 bit PC rel. PLT shifted by 1.
  4096.  
  4097.  -- : BFD_RELOC_390_GOTPCDBL
  4098.      32 bit PC rel. GOT shifted by 1.
  4099.  
  4100.  -- : BFD_RELOC_390_GOT64
  4101.      64 bit GOT offset.
  4102.  
  4103.  -- : BFD_RELOC_390_PLT64
  4104.      64 bit PC relative PLT address.
  4105.  
  4106.  -- : BFD_RELOC_390_GOTENT
  4107.      32 bit rel. offset to GOT entry.
  4108.  
  4109.  -- : BFD_RELOC_390_GOTOFF64
  4110.      64 bit offset to GOT.
  4111.  
  4112.  -- : BFD_RELOC_390_GOTPLT12
  4113.      12-bit offset to symbol-entry within GOT, with PLT handling.
  4114.  
  4115.  -- : BFD_RELOC_390_GOTPLT16
  4116.      16-bit offset to symbol-entry within GOT, with PLT handling.
  4117.  
  4118.  -- : BFD_RELOC_390_GOTPLT32
  4119.      32-bit offset to symbol-entry within GOT, with PLT handling.
  4120.  
  4121.  -- : BFD_RELOC_390_GOTPLT64
  4122.      64-bit offset to symbol-entry within GOT, with PLT handling.
  4123.  
  4124.  -- : BFD_RELOC_390_GOTPLTENT
  4125.      32-bit rel. offset to symbol-entry within GOT, with PLT handling.
  4126.  
  4127.  -- : BFD_RELOC_390_PLTOFF16
  4128.      16-bit rel. offset from the GOT to a PLT entry.
  4129.  
  4130.  -- : BFD_RELOC_390_PLTOFF32
  4131.      32-bit rel. offset from the GOT to a PLT entry.
  4132.  
  4133.  -- : BFD_RELOC_390_PLTOFF64
  4134.      64-bit rel. offset from the GOT to a PLT entry.
  4135.  
  4136.  -- : BFD_RELOC_390_TLS_LOAD
  4137.  -- : BFD_RELOC_390_TLS_GDCALL
  4138.  -- : BFD_RELOC_390_TLS_LDCALL
  4139.  -- : BFD_RELOC_390_TLS_GD32
  4140.  -- : BFD_RELOC_390_TLS_GD64
  4141.  -- : BFD_RELOC_390_TLS_GOTIE12
  4142.  -- : BFD_RELOC_390_TLS_GOTIE32
  4143.  -- : BFD_RELOC_390_TLS_GOTIE64
  4144.  -- : BFD_RELOC_390_TLS_LDM32
  4145.  -- : BFD_RELOC_390_TLS_LDM64
  4146.  -- : BFD_RELOC_390_TLS_IE32
  4147.  -- : BFD_RELOC_390_TLS_IE64
  4148.  -- : BFD_RELOC_390_TLS_IEENT
  4149.  -- : BFD_RELOC_390_TLS_LE32
  4150.  -- : BFD_RELOC_390_TLS_LE64
  4151.  -- : BFD_RELOC_390_TLS_LDO32
  4152.  -- : BFD_RELOC_390_TLS_LDO64
  4153.  -- : BFD_RELOC_390_TLS_DTPMOD
  4154.  -- : BFD_RELOC_390_TLS_DTPOFF
  4155.  -- : BFD_RELOC_390_TLS_TPOFF
  4156.      s390 tls relocations.
  4157.  
  4158.  -- : BFD_RELOC_390_20
  4159.  -- : BFD_RELOC_390_GOT20
  4160.  -- : BFD_RELOC_390_GOTPLT20
  4161.  -- : BFD_RELOC_390_TLS_GOTIE20
  4162.      Long displacement extension.
  4163.  
  4164.  -- : BFD_RELOC_IP2K_FR9
  4165.      Scenix IP2K - 9-bit register number / data address
  4166.  
  4167.  -- : BFD_RELOC_IP2K_BANK
  4168.      Scenix IP2K - 4-bit register/data bank number
  4169.  
  4170.  -- : BFD_RELOC_IP2K_ADDR16CJP
  4171.      Scenix IP2K - low 13 bits of instruction word address
  4172.  
  4173.  -- : BFD_RELOC_IP2K_PAGE3
  4174.      Scenix IP2K - high 3 bits of instruction word address
  4175.  
  4176.  -- : BFD_RELOC_IP2K_LO8DATA
  4177.  -- : BFD_RELOC_IP2K_HI8DATA
  4178.  -- : BFD_RELOC_IP2K_EX8DATA
  4179.      Scenix IP2K - ext/low/high 8 bits of data address
  4180.  
  4181.  -- : BFD_RELOC_IP2K_LO8INSN
  4182.  -- : BFD_RELOC_IP2K_HI8INSN
  4183.      Scenix IP2K - low/high 8 bits of instruction word address
  4184.  
  4185.  -- : BFD_RELOC_IP2K_PC_SKIP
  4186.      Scenix IP2K - even/odd PC modifier to modify snb pcl.0
  4187.  
  4188.  -- : BFD_RELOC_IP2K_TEXT
  4189.      Scenix IP2K - 16 bit word address in text section.
  4190.  
  4191.  -- : BFD_RELOC_IP2K_FR_OFFSET
  4192.      Scenix IP2K - 7-bit sp or dp offset
  4193.  
  4194.  -- : BFD_RELOC_VPE4KMATH_DATA
  4195.  -- : BFD_RELOC_VPE4KMATH_INSN
  4196.      Scenix VPE4K coprocessor - data/insn-space addressing
  4197.  
  4198.  -- : BFD_RELOC_VTABLE_INHERIT
  4199.  -- : BFD_RELOC_VTABLE_ENTRY
  4200.      These two relocations are used by the linker to determine which of
  4201.      the entries in a C++ virtual function table are actually used.
  4202.      When the -gc-sections option is given, the linker will zero out
  4203.      the entries that are not used, so that the code for those
  4204.      functions need not be included in the output.
  4205.  
  4206.      VTABLE_INHERIT is a zero-space relocation used to describe to the
  4207.      linker the inheritance tree of a C++ virtual function table.  The
  4208.      relocation's symbol should be the parent class' vtable, and the
  4209.      relocation should be located at the child vtable.
  4210.  
  4211.      VTABLE_ENTRY is a zero-space relocation that describes the use of a
  4212.      virtual function table entry.  The reloc's symbol should refer to
  4213.      the table of the class mentioned in the code.  Off of that base,
  4214.      an offset describes the entry that is being used.  For Rela hosts,
  4215.      this offset is stored in the reloc's addend.  For Rel hosts, we
  4216.      are forced to put this offset in the reloc's section offset.
  4217.  
  4218.  -- : BFD_RELOC_IA64_IMM14
  4219.  -- : BFD_RELOC_IA64_IMM22
  4220.  -- : BFD_RELOC_IA64_IMM64
  4221.  -- : BFD_RELOC_IA64_DIR32MSB
  4222.  -- : BFD_RELOC_IA64_DIR32LSB
  4223.  -- : BFD_RELOC_IA64_DIR64MSB
  4224.  -- : BFD_RELOC_IA64_DIR64LSB
  4225.  -- : BFD_RELOC_IA64_GPREL22
  4226.  -- : BFD_RELOC_IA64_GPREL64I
  4227.  -- : BFD_RELOC_IA64_GPREL32MSB
  4228.  -- : BFD_RELOC_IA64_GPREL32LSB
  4229.  -- : BFD_RELOC_IA64_GPREL64MSB
  4230.  -- : BFD_RELOC_IA64_GPREL64LSB
  4231.  -- : BFD_RELOC_IA64_LTOFF22
  4232.  -- : BFD_RELOC_IA64_LTOFF64I
  4233.  -- : BFD_RELOC_IA64_PLTOFF22
  4234.  -- : BFD_RELOC_IA64_PLTOFF64I
  4235.  -- : BFD_RELOC_IA64_PLTOFF64MSB
  4236.  -- : BFD_RELOC_IA64_PLTOFF64LSB
  4237.  -- : BFD_RELOC_IA64_FPTR64I
  4238.  -- : BFD_RELOC_IA64_FPTR32MSB
  4239.  -- : BFD_RELOC_IA64_FPTR32LSB
  4240.  -- : BFD_RELOC_IA64_FPTR64MSB
  4241.  -- : BFD_RELOC_IA64_FPTR64LSB
  4242.  -- : BFD_RELOC_IA64_PCREL21B
  4243.  -- : BFD_RELOC_IA64_PCREL21BI
  4244.  -- : BFD_RELOC_IA64_PCREL21M
  4245.  -- : BFD_RELOC_IA64_PCREL21F
  4246.  -- : BFD_RELOC_IA64_PCREL22
  4247.  -- : BFD_RELOC_IA64_PCREL60B
  4248.  -- : BFD_RELOC_IA64_PCREL64I
  4249.  -- : BFD_RELOC_IA64_PCREL32MSB
  4250.  -- : BFD_RELOC_IA64_PCREL32LSB
  4251.  -- : BFD_RELOC_IA64_PCREL64MSB
  4252.  -- : BFD_RELOC_IA64_PCREL64LSB
  4253.  -- : BFD_RELOC_IA64_LTOFF_FPTR22
  4254.  -- : BFD_RELOC_IA64_LTOFF_FPTR64I
  4255.  -- : BFD_RELOC_IA64_LTOFF_FPTR32MSB
  4256.  -- : BFD_RELOC_IA64_LTOFF_FPTR32LSB
  4257.  -- : BFD_RELOC_IA64_LTOFF_FPTR64MSB
  4258.  -- : BFD_RELOC_IA64_LTOFF_FPTR64LSB
  4259.  -- : BFD_RELOC_IA64_SEGREL32MSB
  4260.  -- : BFD_RELOC_IA64_SEGREL32LSB
  4261.  -- : BFD_RELOC_IA64_SEGREL64MSB
  4262.  -- : BFD_RELOC_IA64_SEGREL64LSB
  4263.  -- : BFD_RELOC_IA64_SECREL32MSB
  4264.  -- : BFD_RELOC_IA64_SECREL32LSB
  4265.  -- : BFD_RELOC_IA64_SECREL64MSB
  4266.  -- : BFD_RELOC_IA64_SECREL64LSB
  4267.  -- : BFD_RELOC_IA64_REL32MSB
  4268.  -- : BFD_RELOC_IA64_REL32LSB
  4269.  -- : BFD_RELOC_IA64_REL64MSB
  4270.  -- : BFD_RELOC_IA64_REL64LSB
  4271.  -- : BFD_RELOC_IA64_LTV32MSB
  4272.  -- : BFD_RELOC_IA64_LTV32LSB
  4273.  -- : BFD_RELOC_IA64_LTV64MSB
  4274.  -- : BFD_RELOC_IA64_LTV64LSB
  4275.  -- : BFD_RELOC_IA64_IPLTMSB
  4276.  -- : BFD_RELOC_IA64_IPLTLSB
  4277.  -- : BFD_RELOC_IA64_COPY
  4278.  -- : BFD_RELOC_IA64_LTOFF22X
  4279.  -- : BFD_RELOC_IA64_LDXMOV
  4280.  -- : BFD_RELOC_IA64_TPREL14
  4281.  -- : BFD_RELOC_IA64_TPREL22
  4282.  -- : BFD_RELOC_IA64_TPREL64I
  4283.  -- : BFD_RELOC_IA64_TPREL64MSB
  4284.  -- : BFD_RELOC_IA64_TPREL64LSB
  4285.  -- : BFD_RELOC_IA64_LTOFF_TPREL22
  4286.  -- : BFD_RELOC_IA64_DTPMOD64MSB
  4287.  -- : BFD_RELOC_IA64_DTPMOD64LSB
  4288.  -- : BFD_RELOC_IA64_LTOFF_DTPMOD22
  4289.  -- : BFD_RELOC_IA64_DTPREL14
  4290.  -- : BFD_RELOC_IA64_DTPREL22
  4291.  -- : BFD_RELOC_IA64_DTPREL64I
  4292.  -- : BFD_RELOC_IA64_DTPREL32MSB
  4293.  -- : BFD_RELOC_IA64_DTPREL32LSB
  4294.  -- : BFD_RELOC_IA64_DTPREL64MSB
  4295.  -- : BFD_RELOC_IA64_DTPREL64LSB
  4296.  -- : BFD_RELOC_IA64_LTOFF_DTPREL22
  4297.      Intel IA64 Relocations.
  4298.  
  4299.  -- : BFD_RELOC_M68HC11_HI8
  4300.      Motorola 68HC11 reloc.  This is the 8 bit high part of an absolute
  4301.      address.
  4302.  
  4303.  -- : BFD_RELOC_M68HC11_LO8
  4304.      Motorola 68HC11 reloc.  This is the 8 bit low part of an absolute
  4305.      address.
  4306.  
  4307.  -- : BFD_RELOC_M68HC11_3B
  4308.      Motorola 68HC11 reloc.  This is the 3 bit of a value.
  4309.  
  4310.  -- : BFD_RELOC_M68HC11_RL_JUMP
  4311.      Motorola 68HC11 reloc.  This reloc marks the beginning of a
  4312.      jump/call instruction.  It is used for linker relaxation to
  4313.      correctly identify beginning of instruction and change some
  4314.      branches to use PC-relative addressing mode.
  4315.  
  4316.  -- : BFD_RELOC_M68HC11_RL_GROUP
  4317.      Motorola 68HC11 reloc.  This reloc marks a group of several
  4318.      instructions that gcc generates and for which the linker
  4319.      relaxation pass can modify and/or remove some of them.
  4320.  
  4321.  -- : BFD_RELOC_M68HC11_LO16
  4322.      Motorola 68HC11 reloc.  This is the 16-bit lower part of an
  4323.      address.  It is used for 'call' instruction to specify the symbol
  4324.      address without any special transformation (due to memory bank
  4325.      window).
  4326.  
  4327.  -- : BFD_RELOC_M68HC11_PAGE
  4328.      Motorola 68HC11 reloc.  This is a 8-bit reloc that specifies the
  4329.      page number of an address.  It is used by 'call' instruction to
  4330.      specify the page number of the symbol.
  4331.  
  4332.  -- : BFD_RELOC_M68HC11_24
  4333.      Motorola 68HC11 reloc.  This is a 24-bit reloc that represents the
  4334.      address with a 16-bit value and a 8-bit page number.  The symbol
  4335.      address is transformed to follow the 16K memory bank of 68HC12
  4336.      (seen as mapped in the window).
  4337.  
  4338.  -- : BFD_RELOC_M68HC12_5B
  4339.      Motorola 68HC12 reloc.  This is the 5 bits of a value.
  4340.  
  4341.  -- : BFD_RELOC_16C_NUM08
  4342.  -- : BFD_RELOC_16C_NUM08_C
  4343.  -- : BFD_RELOC_16C_NUM16
  4344.  -- : BFD_RELOC_16C_NUM16_C
  4345.  -- : BFD_RELOC_16C_NUM32
  4346.  -- : BFD_RELOC_16C_NUM32_C
  4347.  -- : BFD_RELOC_16C_DISP04
  4348.  -- : BFD_RELOC_16C_DISP04_C
  4349.  -- : BFD_RELOC_16C_DISP08
  4350.  -- : BFD_RELOC_16C_DISP08_C
  4351.  -- : BFD_RELOC_16C_DISP16
  4352.  -- : BFD_RELOC_16C_DISP16_C
  4353.  -- : BFD_RELOC_16C_DISP24
  4354.  -- : BFD_RELOC_16C_DISP24_C
  4355.  -- : BFD_RELOC_16C_DISP24a
  4356.  -- : BFD_RELOC_16C_DISP24a_C
  4357.  -- : BFD_RELOC_16C_REG04
  4358.  -- : BFD_RELOC_16C_REG04_C
  4359.  -- : BFD_RELOC_16C_REG04a
  4360.  -- : BFD_RELOC_16C_REG04a_C
  4361.  -- : BFD_RELOC_16C_REG14
  4362.  -- : BFD_RELOC_16C_REG14_C
  4363.  -- : BFD_RELOC_16C_REG16
  4364.  -- : BFD_RELOC_16C_REG16_C
  4365.  -- : BFD_RELOC_16C_REG20
  4366.  -- : BFD_RELOC_16C_REG20_C
  4367.  -- : BFD_RELOC_16C_ABS20
  4368.  -- : BFD_RELOC_16C_ABS20_C
  4369.  -- : BFD_RELOC_16C_ABS24
  4370.  -- : BFD_RELOC_16C_ABS24_C
  4371.  -- : BFD_RELOC_16C_IMM04
  4372.  -- : BFD_RELOC_16C_IMM04_C
  4373.  -- : BFD_RELOC_16C_IMM16
  4374.  -- : BFD_RELOC_16C_IMM16_C
  4375.  -- : BFD_RELOC_16C_IMM20
  4376.  -- : BFD_RELOC_16C_IMM20_C
  4377.  -- : BFD_RELOC_16C_IMM24
  4378.  -- : BFD_RELOC_16C_IMM24_C
  4379.  -- : BFD_RELOC_16C_IMM32
  4380.  -- : BFD_RELOC_16C_IMM32_C
  4381.      NS CR16C Relocations.
  4382.  
  4383.  -- : BFD_RELOC_CRX_REL4
  4384.  -- : BFD_RELOC_CRX_REL8
  4385.  -- : BFD_RELOC_CRX_REL8_CMP
  4386.  -- : BFD_RELOC_CRX_REL16
  4387.  -- : BFD_RELOC_CRX_REL24
  4388.  -- : BFD_RELOC_CRX_REL32
  4389.  -- : BFD_RELOC_CRX_REGREL12
  4390.  -- : BFD_RELOC_CRX_REGREL22
  4391.  -- : BFD_RELOC_CRX_REGREL28
  4392.  -- : BFD_RELOC_CRX_REGREL32
  4393.  -- : BFD_RELOC_CRX_ABS16
  4394.  -- : BFD_RELOC_CRX_ABS32
  4395.  -- : BFD_RELOC_CRX_NUM8
  4396.  -- : BFD_RELOC_CRX_NUM16
  4397.  -- : BFD_RELOC_CRX_NUM32
  4398.  -- : BFD_RELOC_CRX_IMM16
  4399.  -- : BFD_RELOC_CRX_IMM32
  4400.  -- : BFD_RELOC_CRX_SWITCH8
  4401.  -- : BFD_RELOC_CRX_SWITCH16
  4402.  -- : BFD_RELOC_CRX_SWITCH32
  4403.      NS CRX Relocations.
  4404.  
  4405.  -- : BFD_RELOC_CRIS_BDISP8
  4406.  -- : BFD_RELOC_CRIS_UNSIGNED_5
  4407.  -- : BFD_RELOC_CRIS_SIGNED_6
  4408.  -- : BFD_RELOC_CRIS_UNSIGNED_6
  4409.  -- : BFD_RELOC_CRIS_SIGNED_8
  4410.  -- : BFD_RELOC_CRIS_UNSIGNED_8
  4411.  -- : BFD_RELOC_CRIS_SIGNED_16
  4412.  -- : BFD_RELOC_CRIS_UNSIGNED_16
  4413.  -- : BFD_RELOC_CRIS_LAPCQ_OFFSET
  4414.  -- : BFD_RELOC_CRIS_UNSIGNED_4
  4415.      These relocs are only used within the CRIS assembler.  They are not
  4416.      (at present) written to any object files.
  4417.  
  4418.  -- : BFD_RELOC_CRIS_COPY
  4419.  -- : BFD_RELOC_CRIS_GLOB_DAT
  4420.  -- : BFD_RELOC_CRIS_JUMP_SLOT
  4421.  -- : BFD_RELOC_CRIS_RELATIVE
  4422.      Relocs used in ELF shared libraries for CRIS.
  4423.  
  4424.  -- : BFD_RELOC_CRIS_32_GOT
  4425.      32-bit offset to symbol-entry within GOT.
  4426.  
  4427.  -- : BFD_RELOC_CRIS_16_GOT
  4428.      16-bit offset to symbol-entry within GOT.
  4429.  
  4430.  -- : BFD_RELOC_CRIS_32_GOTPLT
  4431.      32-bit offset to symbol-entry within GOT, with PLT handling.
  4432.  
  4433.  -- : BFD_RELOC_CRIS_16_GOTPLT
  4434.      16-bit offset to symbol-entry within GOT, with PLT handling.
  4435.  
  4436.  -- : BFD_RELOC_CRIS_32_GOTREL
  4437.      32-bit offset to symbol, relative to GOT.
  4438.  
  4439.  -- : BFD_RELOC_CRIS_32_PLT_GOTREL
  4440.      32-bit offset to symbol with PLT entry, relative to GOT.
  4441.  
  4442.  -- : BFD_RELOC_CRIS_32_PLT_PCREL
  4443.      32-bit offset to symbol with PLT entry, relative to this
  4444.      relocation.
  4445.  
  4446.  -- : BFD_RELOC_860_COPY
  4447.  -- : BFD_RELOC_860_GLOB_DAT
  4448.  -- : BFD_RELOC_860_JUMP_SLOT
  4449.  -- : BFD_RELOC_860_RELATIVE
  4450.  -- : BFD_RELOC_860_PC26
  4451.  -- : BFD_RELOC_860_PLT26
  4452.  -- : BFD_RELOC_860_PC16
  4453.  -- : BFD_RELOC_860_LOW0
  4454.  -- : BFD_RELOC_860_SPLIT0
  4455.  -- : BFD_RELOC_860_LOW1
  4456.  -- : BFD_RELOC_860_SPLIT1
  4457.  -- : BFD_RELOC_860_LOW2
  4458.  -- : BFD_RELOC_860_SPLIT2
  4459.  -- : BFD_RELOC_860_LOW3
  4460.  -- : BFD_RELOC_860_LOGOT0
  4461.  -- : BFD_RELOC_860_SPGOT0
  4462.  -- : BFD_RELOC_860_LOGOT1
  4463.  -- : BFD_RELOC_860_SPGOT1
  4464.  -- : BFD_RELOC_860_LOGOTOFF0
  4465.  -- : BFD_RELOC_860_SPGOTOFF0
  4466.  -- : BFD_RELOC_860_LOGOTOFF1
  4467.  -- : BFD_RELOC_860_SPGOTOFF1
  4468.  -- : BFD_RELOC_860_LOGOTOFF2
  4469.  -- : BFD_RELOC_860_LOGOTOFF3
  4470.  -- : BFD_RELOC_860_LOPC
  4471.  -- : BFD_RELOC_860_HIGHADJ
  4472.  -- : BFD_RELOC_860_HAGOT
  4473.  -- : BFD_RELOC_860_HAGOTOFF
  4474.  -- : BFD_RELOC_860_HAPC
  4475.  -- : BFD_RELOC_860_HIGH
  4476.  -- : BFD_RELOC_860_HIGOT
  4477.  -- : BFD_RELOC_860_HIGOTOFF
  4478.      Intel i860 Relocations.
  4479.  
  4480.  -- : BFD_RELOC_OPENRISC_ABS_26
  4481.  -- : BFD_RELOC_OPENRISC_REL_26
  4482.      OpenRISC Relocations.
  4483.  
  4484.  -- : BFD_RELOC_H8_DIR16A8
  4485.  -- : BFD_RELOC_H8_DIR16R8
  4486.  -- : BFD_RELOC_H8_DIR24A8
  4487.  -- : BFD_RELOC_H8_DIR24R8
  4488.  -- : BFD_RELOC_H8_DIR32A16
  4489.      H8 elf Relocations.
  4490.  
  4491.  -- : BFD_RELOC_XSTORMY16_REL_12
  4492.  -- : BFD_RELOC_XSTORMY16_12
  4493.  -- : BFD_RELOC_XSTORMY16_24
  4494.  -- : BFD_RELOC_XSTORMY16_FPTR16
  4495.      Sony Xstormy16 Relocations.
  4496.  
  4497.  -- : BFD_RELOC_VAX_GLOB_DAT
  4498.  -- : BFD_RELOC_VAX_JMP_SLOT
  4499.  -- : BFD_RELOC_VAX_RELATIVE
  4500.      Relocations used by VAX ELF.
  4501.  
  4502.  -- : BFD_RELOC_MSP430_10_PCREL
  4503.  -- : BFD_RELOC_MSP430_16_PCREL
  4504.  -- : BFD_RELOC_MSP430_16
  4505.  -- : BFD_RELOC_MSP430_16_PCREL_BYTE
  4506.  -- : BFD_RELOC_MSP430_16_BYTE
  4507.  -- : BFD_RELOC_MSP430_2X_PCREL
  4508.  -- : BFD_RELOC_MSP430_RL_PCREL
  4509.      msp430 specific relocation codes
  4510.  
  4511.  -- : BFD_RELOC_IQ2000_OFFSET_16
  4512.  -- : BFD_RELOC_IQ2000_OFFSET_21
  4513.  -- : BFD_RELOC_IQ2000_UHI16
  4514.      IQ2000 Relocations.
  4515.  
  4516.  -- : BFD_RELOC_XTENSA_RTLD
  4517.      Special Xtensa relocation used only by PLT entries in ELF shared
  4518.      objects to indicate that the runtime linker should set the value
  4519.      to one of its own internal functions or data structures.
  4520.  
  4521.  -- : BFD_RELOC_XTENSA_GLOB_DAT
  4522.  -- : BFD_RELOC_XTENSA_JMP_SLOT
  4523.  -- : BFD_RELOC_XTENSA_RELATIVE
  4524.      Xtensa relocations for ELF shared objects.
  4525.  
  4526.  -- : BFD_RELOC_XTENSA_PLT
  4527.      Xtensa relocation used in ELF object files for symbols that may
  4528.      require PLT entries.  Otherwise, this is just a generic 32-bit
  4529.      relocation.
  4530.  
  4531.  -- : BFD_RELOC_XTENSA_DIFF8
  4532.  -- : BFD_RELOC_XTENSA_DIFF16
  4533.  -- : BFD_RELOC_XTENSA_DIFF32
  4534.      Xtensa relocations to mark the difference of two local symbols.
  4535.      These are only needed to support linker relaxation and can be
  4536.      ignored when not relaxing.  The field is set to the value of the
  4537.      difference assuming no relaxation.  The relocation encodes the
  4538.      position of the first symbol so the linker can determine whether
  4539.      to adjust the field value.
  4540.  
  4541.  -- : BFD_RELOC_XTENSA_SLOT0_OP
  4542.  -- : BFD_RELOC_XTENSA_SLOT1_OP
  4543.  -- : BFD_RELOC_XTENSA_SLOT2_OP
  4544.  -- : BFD_RELOC_XTENSA_SLOT3_OP
  4545.  -- : BFD_RELOC_XTENSA_SLOT4_OP
  4546.  -- : BFD_RELOC_XTENSA_SLOT5_OP
  4547.  -- : BFD_RELOC_XTENSA_SLOT6_OP
  4548.  -- : BFD_RELOC_XTENSA_SLOT7_OP
  4549.  -- : BFD_RELOC_XTENSA_SLOT8_OP
  4550.  -- : BFD_RELOC_XTENSA_SLOT9_OP
  4551.  -- : BFD_RELOC_XTENSA_SLOT10_OP
  4552.  -- : BFD_RELOC_XTENSA_SLOT11_OP
  4553.  -- : BFD_RELOC_XTENSA_SLOT12_OP
  4554.  -- : BFD_RELOC_XTENSA_SLOT13_OP
  4555.  -- : BFD_RELOC_XTENSA_SLOT14_OP
  4556.      Generic Xtensa relocations for instruction operands.  Only the slot
  4557.      number is encoded in the relocation.  The relocation applies to the
  4558.      last PC-relative immediate operand, or if there are no PC-relative
  4559.      immediates, to the last immediate operand.
  4560.  
  4561.  -- : BFD_RELOC_XTENSA_SLOT0_ALT
  4562.  -- : BFD_RELOC_XTENSA_SLOT1_ALT
  4563.  -- : BFD_RELOC_XTENSA_SLOT2_ALT
  4564.  -- : BFD_RELOC_XTENSA_SLOT3_ALT
  4565.  -- : BFD_RELOC_XTENSA_SLOT4_ALT
  4566.  -- : BFD_RELOC_XTENSA_SLOT5_ALT
  4567.  -- : BFD_RELOC_XTENSA_SLOT6_ALT
  4568.  -- : BFD_RELOC_XTENSA_SLOT7_ALT
  4569.  -- : BFD_RELOC_XTENSA_SLOT8_ALT
  4570.  -- : BFD_RELOC_XTENSA_SLOT9_ALT
  4571.  -- : BFD_RELOC_XTENSA_SLOT10_ALT
  4572.  -- : BFD_RELOC_XTENSA_SLOT11_ALT
  4573.  -- : BFD_RELOC_XTENSA_SLOT12_ALT
  4574.  -- : BFD_RELOC_XTENSA_SLOT13_ALT
  4575.  -- : BFD_RELOC_XTENSA_SLOT14_ALT
  4576.      Alternate Xtensa relocations.  Only the slot is encoded in the
  4577.      relocation.  The meaning of these relocations is opcode-specific.
  4578.  
  4579.  -- : BFD_RELOC_XTENSA_OP0
  4580.  -- : BFD_RELOC_XTENSA_OP1
  4581.  -- : BFD_RELOC_XTENSA_OP2
  4582.      Xtensa relocations for backward compatibility.  These have all been
  4583.      replaced by BFD_RELOC_XTENSA_SLOT0_OP.
  4584.  
  4585.  -- : BFD_RELOC_XTENSA_ASM_EXPAND
  4586.      Xtensa relocation to mark that the assembler expanded the
  4587.      instructions from an original target.  The expansion size is
  4588.      encoded in the reloc size.
  4589.  
  4590.  -- : BFD_RELOC_XTENSA_ASM_SIMPLIFY
  4591.      Xtensa relocation to mark that the linker should simplify
  4592.      assembler-expanded instructions.  This is commonly used internally
  4593.      by the linker after analysis of a BFD_RELOC_XTENSA_ASM_EXPAND.
  4594.  
  4595.  
  4596.      typedef enum bfd_reloc_code_real bfd_reloc_code_real_type;
  4597.    
  4598. 2.11.0.2 `bfd_reloc_type_lookup'
  4599. ................................
  4600.  
  4601. *Synopsis*
  4602.      reloc_howto_type *bfd_reloc_type_lookup
  4603.         (bfd *abfd, bfd_reloc_code_real_type code);
  4604.    *Description*
  4605. Return a pointer to a howto structure which, when invoked, will perform
  4606. the relocation CODE on data from the architecture noted.
  4607.  
  4608. 2.11.0.3 `bfd_default_reloc_type_lookup'
  4609. ........................................
  4610.  
  4611. *Synopsis*
  4612.      reloc_howto_type *bfd_default_reloc_type_lookup
  4613.         (bfd *abfd, bfd_reloc_code_real_type  code);
  4614.    *Description*
  4615. Provides a default relocation lookup routine for any architecture.
  4616.  
  4617. 2.11.0.4 `bfd_get_reloc_code_name'
  4618. ..................................
  4619.  
  4620. *Synopsis*
  4621.      const char *bfd_get_reloc_code_name (bfd_reloc_code_real_type code);
  4622.    *Description*
  4623. Provides a printable name for the supplied relocation code.  Useful
  4624. mainly for printing error messages.
  4625.  
  4626. 2.11.0.5 `bfd_generic_relax_section'
  4627. ....................................
  4628.  
  4629. *Synopsis*
  4630.      bfd_boolean bfd_generic_relax_section
  4631.         (bfd *abfd,
  4632.          asection *section,
  4633.          struct bfd_link_info *,
  4634.          bfd_boolean *);
  4635.    *Description*
  4636. Provides default handling for relaxing for back ends which don't do
  4637. relaxing.
  4638.  
  4639. 2.11.0.6 `bfd_generic_gc_sections'
  4640. ..................................
  4641.  
  4642. *Synopsis*
  4643.      bfd_boolean bfd_generic_gc_sections
  4644.         (bfd *, struct bfd_link_info *);
  4645.    *Description*
  4646. Provides default handling for relaxing for back ends which don't do
  4647. section gc - i.e., does nothing.
  4648.  
  4649. 2.11.0.7 `bfd_generic_merge_sections'
  4650. .....................................
  4651.  
  4652. *Synopsis*
  4653.      bfd_boolean bfd_generic_merge_sections
  4654.         (bfd *, struct bfd_link_info *);
  4655.    *Description*
  4656. Provides default handling for SEC_MERGE section merging for back ends
  4657. which don't have SEC_MERGE support - i.e., does nothing.
  4658.  
  4659. 2.11.0.8 `bfd_generic_get_relocated_section_contents'
  4660. .....................................................
  4661.  
  4662. *Synopsis*
  4663.      bfd_byte *bfd_generic_get_relocated_section_contents
  4664.         (bfd *abfd,
  4665.          struct bfd_link_info *link_info,
  4666.          struct bfd_link_order *link_order,
  4667.          bfd_byte *data,
  4668.          bfd_boolean relocatable,
  4669.          asymbol **symbols);
  4670.    *Description*
  4671. Provides default handling of relocation effort for back ends which
  4672. can't be bothered to do it efficiently.
  4673.  
  4674. 
  4675. File: bfd.info,  Node: Core Files,  Next: Targets,  Prev: Relocations,  Up: BFD front end
  4676.  
  4677. 2.12 Core files
  4678. ===============
  4679.  
  4680. *Description*
  4681. These are functions pertaining to core files.
  4682.  
  4683. 2.12.0.1 `bfd_core_file_failing_command'
  4684. ........................................
  4685.  
  4686. *Synopsis*
  4687.      const char *bfd_core_file_failing_command (bfd *abfd);
  4688.    *Description*
  4689. Return a read-only string explaining which program was running when it
  4690. failed and produced the core file ABFD.
  4691.  
  4692. 2.12.0.2 `bfd_core_file_failing_signal'
  4693. .......................................
  4694.  
  4695. *Synopsis*
  4696.      int bfd_core_file_failing_signal (bfd *abfd);
  4697.    *Description*
  4698. Returns the signal number which caused the core dump which generated
  4699. the file the BFD ABFD is attached to.
  4700.  
  4701. 2.12.0.3 `core_file_matches_executable_p'
  4702. .........................................
  4703.  
  4704. *Synopsis*
  4705.      bfd_boolean core_file_matches_executable_p
  4706.         (bfd *core_bfd, bfd *exec_bfd);
  4707.    *Description*
  4708. Return `TRUE' if the core file attached to CORE_BFD was generated by a
  4709. run of the executable file attached to EXEC_BFD, `FALSE' otherwise.
  4710.  
  4711. 
  4712. File: bfd.info,  Node: Targets,  Next: Architectures,  Prev: Core Files,  Up: BFD front end
  4713.  
  4714. 2.13 Targets
  4715. ============
  4716.  
  4717. *Description*
  4718. Each port of BFD to a different machine requires the creation of a
  4719. target back end. All the back end provides to the root part of BFD is a
  4720. structure containing pointers to functions which perform certain low
  4721. level operations on files. BFD translates the applications's requests
  4722. through a pointer into calls to the back end routines.
  4723.  
  4724.    When a file is opened with `bfd_openr', its format and target are
  4725. unknown. BFD uses various mechanisms to determine how to interpret the
  4726. file. The operations performed are:
  4727.  
  4728.    * Create a BFD by calling the internal routine `_bfd_new_bfd', then
  4729.      call `bfd_find_target' with the target string supplied to
  4730.      `bfd_openr' and the new BFD pointer.
  4731.  
  4732.    * If a null target string was provided to `bfd_find_target', look up
  4733.      the environment variable `GNUTARGET' and use that as the target
  4734.      string.
  4735.  
  4736.    * If the target string is still `NULL', or the target string is
  4737.      `default', then use the first item in the target vector as the
  4738.      target type, and set `target_defaulted' in the BFD to cause
  4739.      `bfd_check_format' to loop through all the targets.  *Note
  4740.      bfd_target::.  *Note Formats::.
  4741.  
  4742.    * Otherwise, inspect the elements in the target vector one by one,
  4743.      until a match on target name is found. When found, use it.
  4744.  
  4745.    * Otherwise return the error `bfd_error_invalid_target' to
  4746.      `bfd_openr'.
  4747.  
  4748.    * `bfd_openr' attempts to open the file using `bfd_open_file', and
  4749.      returns the BFD.
  4750.    Once the BFD has been opened and the target selected, the file
  4751. format may be determined. This is done by calling `bfd_check_format' on
  4752. the BFD with a suggested format.  If `target_defaulted' has been set,
  4753. each possible target type is tried to see if it recognizes the
  4754. specified format.  `bfd_check_format' returns `TRUE' when the caller
  4755. guesses right.
  4756.  
  4757. * Menu:
  4758.  
  4759. * bfd_target::
  4760.  
  4761. 
  4762. File: bfd.info,  Node: bfd_target,  Prev: Targets,  Up: Targets
  4763.  
  4764. 2.13.1 bfd_target
  4765. -----------------
  4766.  
  4767. *Description*
  4768. This structure contains everything that BFD knows about a target. It
  4769. includes things like its byte order, name, and which routines to call
  4770. to do various operations.
  4771.  
  4772.    Every BFD points to a target structure with its `xvec' member.
  4773.  
  4774.    The macros below are used to dispatch to functions through the
  4775. `bfd_target' vector. They are used in a number of macros further down
  4776. in `bfd.h', and are also used when calling various routines by hand
  4777. inside the BFD implementation.  The ARGLIST argument must be
  4778. parenthesized; it contains all the arguments to the called function.
  4779.  
  4780.    They make the documentation (more) unpleasant to read, so if someone
  4781. wants to fix this and not break the above, please do.
  4782.      #define BFD_SEND(bfd, message, arglist) \
  4783.        ((*((bfd)->xvec->message)) arglist)
  4784.  
  4785.      #ifdef DEBUG_BFD_SEND
  4786.      #undef BFD_SEND
  4787.      #define BFD_SEND(bfd, message, arglist) \
  4788.        (((bfd) && (bfd)->xvec && (bfd)->xvec->message) ? \
  4789.          ((*((bfd)->xvec->message)) arglist) : \
  4790.          (bfd_assert (__FILE__,__LINE__), NULL))
  4791.      #endif
  4792.    For operations which index on the BFD format:
  4793.      #define BFD_SEND_FMT(bfd, message, arglist) \
  4794.        (((bfd)->xvec->message[(int) ((bfd)->format)]) arglist)
  4795.  
  4796.      #ifdef DEBUG_BFD_SEND
  4797.      #undef BFD_SEND_FMT
  4798.      #define BFD_SEND_FMT(bfd, message, arglist) \
  4799.        (((bfd) && (bfd)->xvec && (bfd)->xvec->message) ? \
  4800.         (((bfd)->xvec->message[(int) ((bfd)->format)]) arglist) : \
  4801.         (bfd_assert (__FILE__,__LINE__), NULL))
  4802.      #endif
  4803.    This is the structure which defines the type of BFD this is.  The
  4804. `xvec' member of the struct `bfd' itself points here.  Each module that
  4805. implements access to a different target under BFD, defines one of these.
  4806.  
  4807.    FIXME, these names should be rationalised with the names of the
  4808. entry points which call them. Too bad we can't have one macro to define
  4809. them both!
  4810.      enum bfd_flavour
  4811.      {
  4812.        bfd_target_unknown_flavour,
  4813.        bfd_target_aout_flavour,
  4814.        bfd_target_coff_flavour,
  4815.        bfd_target_ecoff_flavour,
  4816.        bfd_target_xcoff_flavour,
  4817.        bfd_target_elf_flavour,
  4818.        bfd_target_ieee_flavour,
  4819.        bfd_target_nlm_flavour,
  4820.        bfd_target_oasys_flavour,
  4821.        bfd_target_tekhex_flavour,
  4822.        bfd_target_srec_flavour,
  4823.        bfd_target_ihex_flavour,
  4824.        bfd_target_som_flavour,
  4825.        bfd_target_os9k_flavour,
  4826.        bfd_target_versados_flavour,
  4827.        bfd_target_msdos_flavour,
  4828.        bfd_target_ovax_flavour,
  4829.        bfd_target_evax_flavour,
  4830.        bfd_target_mmo_flavour,
  4831.        bfd_target_mach_o_flavour,
  4832.        bfd_target_pef_flavour,
  4833.        bfd_target_pef_xlib_flavour,
  4834.        bfd_target_sym_flavour
  4835.      };
  4836.  
  4837.      enum bfd_endian { BFD_ENDIAN_BIG, BFD_ENDIAN_LITTLE, BFD_ENDIAN_UNKNOWN };
  4838.  
  4839.      /* Forward declaration.  */
  4840.      typedef struct bfd_link_info _bfd_link_info;
  4841.  
  4842.      typedef struct bfd_target
  4843.      {
  4844.        /* Identifies the kind of target, e.g., SunOS4, Ultrix, etc.  */
  4845.        char *name;
  4846.  
  4847.       /* The "flavour" of a back end is a general indication about
  4848.          the contents of a file.  */
  4849.        enum bfd_flavour flavour;
  4850.  
  4851.        /* The order of bytes within the data area of a file.  */
  4852.        enum bfd_endian byteorder;
  4853.  
  4854.       /* The order of bytes within the header parts of a file.  */
  4855.        enum bfd_endian header_byteorder;
  4856.  
  4857.        /* A mask of all the flags which an executable may have set -
  4858.           from the set `BFD_NO_FLAGS', `HAS_RELOC', ...`D_PAGED'.  */
  4859.        flagword object_flags;
  4860.  
  4861.       /* A mask of all the flags which a section may have set - from
  4862.          the set `SEC_NO_FLAGS', `SEC_ALLOC', ...`SET_NEVER_LOAD'.  */
  4863.        flagword section_flags;
  4864.  
  4865.       /* The character normally found at the front of a symbol.
  4866.          (if any), perhaps `_'.  */
  4867.        char symbol_leading_char;
  4868.  
  4869.       /* The pad character for file names within an archive header.  */
  4870.        char ar_pad_char;
  4871.  
  4872.        /* The maximum number of characters in an archive header.  */
  4873.        unsigned short ar_max_namelen;
  4874.  
  4875.        /* Entries for byte swapping for data. These are different from the
  4876.           other entry points, since they don't take a BFD as the first argument.
  4877.           Certain other handlers could do the same.  */
  4878.        bfd_uint64_t   (*bfd_getx64) (const void *);
  4879.        bfd_int64_t    (*bfd_getx_signed_64) (const void *);
  4880.        void           (*bfd_putx64) (bfd_uint64_t, void *);
  4881.        bfd_vma        (*bfd_getx32) (const void *);
  4882.        bfd_signed_vma (*bfd_getx_signed_32) (const void *);
  4883.        void           (*bfd_putx32) (bfd_vma, void *);
  4884.        bfd_vma        (*bfd_getx16) (const void *);
  4885.        bfd_signed_vma (*bfd_getx_signed_16) (const void *);
  4886.        void           (*bfd_putx16) (bfd_vma, void *);
  4887.  
  4888.        /* Byte swapping for the headers.  */
  4889.        bfd_uint64_t   (*bfd_h_getx64) (const void *);
  4890.        bfd_int64_t    (*bfd_h_getx_signed_64) (const void *);
  4891.        void           (*bfd_h_putx64) (bfd_uint64_t, void *);
  4892.        bfd_vma        (*bfd_h_getx32) (const void *);
  4893.        bfd_signed_vma (*bfd_h_getx_signed_32) (const void *);
  4894.        void           (*bfd_h_putx32) (bfd_vma, void *);
  4895.        bfd_vma        (*bfd_h_getx16) (const void *);
  4896.        bfd_signed_vma (*bfd_h_getx_signed_16) (const void *);
  4897.        void           (*bfd_h_putx16) (bfd_vma, void *);
  4898.  
  4899.        /* Format dependent routines: these are vectors of entry points
  4900.           within the target vector structure, one for each format to check.  */
  4901.  
  4902.        /* Check the format of a file being read.  Return a `bfd_target *' or zero.  */
  4903.        const struct bfd_target *(*_bfd_check_format[bfd_type_end]) (bfd *);
  4904.  
  4905.        /* Set the format of a file being written.  */
  4906.        bfd_boolean (*_bfd_set_format[bfd_type_end]) (bfd *);
  4907.  
  4908.        /* Write cached information into a file being written, at `bfd_close'.  */
  4909.        bfd_boolean (*_bfd_write_contents[bfd_type_end]) (bfd *);
  4910.    The general target vector.  These vectors are initialized using the
  4911. BFD_JUMP_TABLE macros.
  4912.  
  4913.        /* Generic entry points.  */
  4914.      #define BFD_JUMP_TABLE_GENERIC(NAME) \
  4915.        NAME##_close_and_cleanup, \
  4916.        NAME##_bfd_free_cached_info, \
  4917.        NAME##_new_section_hook, \
  4918.        NAME##_get_section_contents, \
  4919.        NAME##_get_section_contents_in_window
  4920.  
  4921.        /* Called when the BFD is being closed to do any necessary cleanup.  */
  4922.        bfd_boolean (*_close_and_cleanup) (bfd *);
  4923.        /* Ask the BFD to free all cached information.  */
  4924.        bfd_boolean (*_bfd_free_cached_info) (bfd *);
  4925.        /* Called when a new section is created.  */
  4926.        bfd_boolean (*_new_section_hook) (bfd *, sec_ptr);
  4927.        /* Read the contents of a section.  */
  4928.        bfd_boolean (*_bfd_get_section_contents)
  4929.          (bfd *, sec_ptr, void *, file_ptr, bfd_size_type);
  4930.        bfd_boolean (*_bfd_get_section_contents_in_window)
  4931.          (bfd *, sec_ptr, bfd_window *, file_ptr, bfd_size_type);
  4932.  
  4933.        /* Entry points to copy private data.  */
  4934.      #define BFD_JUMP_TABLE_COPY(NAME) \
  4935.        NAME##_bfd_copy_private_bfd_data, \
  4936.        NAME##_bfd_merge_private_bfd_data, \
  4937.        NAME##_bfd_copy_private_section_data, \
  4938.        NAME##_bfd_copy_private_symbol_data, \
  4939.        NAME##_bfd_copy_private_header_data, \
  4940.        NAME##_bfd_set_private_flags, \
  4941.        NAME##_bfd_print_private_bfd_data
  4942.  
  4943.        /* Called to copy BFD general private data from one object file
  4944.           to another.  */
  4945.        bfd_boolean (*_bfd_copy_private_bfd_data) (bfd *, bfd *);
  4946.        /* Called to merge BFD general private data from one object file
  4947.           to a common output file when linking.  */
  4948.        bfd_boolean (*_bfd_merge_private_bfd_data) (bfd *, bfd *);
  4949.        /* Called to copy BFD private section data from one object file
  4950.           to another.  */
  4951.        bfd_boolean (*_bfd_copy_private_section_data)
  4952.          (bfd *, sec_ptr, bfd *, sec_ptr);
  4953.        /* Called to copy BFD private symbol data from one symbol
  4954.           to another.  */
  4955.        bfd_boolean (*_bfd_copy_private_symbol_data)
  4956.          (bfd *, asymbol *, bfd *, asymbol *);
  4957.        /* Called to copy BFD private header data from one object file
  4958.           to another.  */
  4959.        bfd_boolean (*_bfd_copy_private_header_data)
  4960.          (bfd *, bfd *);
  4961.        /* Called to set private backend flags.  */
  4962.        bfd_boolean (*_bfd_set_private_flags) (bfd *, flagword);
  4963.  
  4964.        /* Called to print private BFD data.  */
  4965.        bfd_boolean (*_bfd_print_private_bfd_data) (bfd *, void *);
  4966.  
  4967.        /* Core file entry points.  */
  4968.      #define BFD_JUMP_TABLE_CORE(NAME) \
  4969.        NAME##_core_file_failing_command, \
  4970.        NAME##_core_file_failing_signal, \
  4971.        NAME##_core_file_matches_executable_p
  4972.  
  4973.        char *      (*_core_file_failing_command) (bfd *);
  4974.        int         (*_core_file_failing_signal) (bfd *);
  4975.        bfd_boolean (*_core_file_matches_executable_p) (bfd *, bfd *);
  4976.  
  4977.        /* Archive entry points.  */
  4978.      #define BFD_JUMP_TABLE_ARCHIVE(NAME) \
  4979.        NAME##_slurp_armap, \
  4980.        NAME##_slurp_extended_name_table, \
  4981.        NAME##_construct_extended_name_table, \
  4982.        NAME##_truncate_arname, \
  4983.        NAME##_write_armap, \
  4984.        NAME##_read_ar_hdr, \
  4985.        NAME##_openr_next_archived_file, \
  4986.        NAME##_get_elt_at_index, \
  4987.        NAME##_generic_stat_arch_elt, \
  4988.        NAME##_update_armap_timestamp
  4989.  
  4990.        bfd_boolean (*_bfd_slurp_armap) (bfd *);
  4991.        bfd_boolean (*_bfd_slurp_extended_name_table) (bfd *);
  4992.        bfd_boolean (*_bfd_construct_extended_name_table)
  4993.          (bfd *, char **, bfd_size_type *, const char **);
  4994.        void        (*_bfd_truncate_arname) (bfd *, const char *, char *);
  4995.        bfd_boolean (*write_armap)
  4996.          (bfd *, unsigned int, struct orl *, unsigned int, int);
  4997.        void *      (*_bfd_read_ar_hdr_fn) (bfd *);
  4998.        bfd *       (*openr_next_archived_file) (bfd *, bfd *);
  4999.      #define bfd_get_elt_at_index(b,i) BFD_SEND (b, _bfd_get_elt_at_index, (b,i))
  5000.        bfd *       (*_bfd_get_elt_at_index) (bfd *, symindex);
  5001.        int         (*_bfd_stat_arch_elt) (bfd *, struct stat *);
  5002.        bfd_boolean (*_bfd_update_armap_timestamp) (bfd *);
  5003.  
  5004.        /* Entry points used for symbols.  */
  5005.      #define BFD_JUMP_TABLE_SYMBOLS(NAME) \
  5006.        NAME##_get_symtab_upper_bound, \
  5007.        NAME##_canonicalize_symtab, \
  5008.        NAME##_make_empty_symbol, \
  5009.        NAME##_print_symbol, \
  5010.        NAME##_get_symbol_info, \
  5011.        NAME##_bfd_is_local_label_name, \
  5012.        NAME##_bfd_is_target_special_symbol, \
  5013.        NAME##_get_lineno, \
  5014.        NAME##_find_nearest_line, \
  5015.        NAME##_bfd_make_debug_symbol, \
  5016.        NAME##_read_minisymbols, \
  5017.        NAME##_minisymbol_to_symbol
  5018.  
  5019.        long        (*_bfd_get_symtab_upper_bound) (bfd *);
  5020.        long        (*_bfd_canonicalize_symtab)
  5021.          (bfd *, struct bfd_symbol **);
  5022.        struct bfd_symbol *
  5023.                    (*_bfd_make_empty_symbol) (bfd *);
  5024.        void        (*_bfd_print_symbol)
  5025.          (bfd *, void *, struct bfd_symbol *, bfd_print_symbol_type);
  5026.      #define bfd_print_symbol(b,p,s,e) BFD_SEND (b, _bfd_print_symbol, (b,p,s,e))
  5027.        void        (*_bfd_get_symbol_info)
  5028.          (bfd *, struct bfd_symbol *, symbol_info *);
  5029.      #define bfd_get_symbol_info(b,p,e) BFD_SEND (b, _bfd_get_symbol_info, (b,p,e))
  5030.        bfd_boolean (*_bfd_is_local_label_name) (bfd *, const char *);
  5031.        bfd_boolean (*_bfd_is_target_special_symbol) (bfd *, asymbol *);
  5032.        alent *     (*_get_lineno) (bfd *, struct bfd_symbol *);
  5033.        bfd_boolean (*_bfd_find_nearest_line)
  5034.          (bfd *, struct bfd_section *, struct bfd_symbol **, bfd_vma,
  5035.           const char **, const char **, unsigned int *);
  5036.       /* Back-door to allow format-aware applications to create debug symbols
  5037.          while using BFD for everything else.  Currently used by the assembler
  5038.          when creating COFF files.  */
  5039.        asymbol *   (*_bfd_make_debug_symbol)
  5040.          (bfd *, void *, unsigned long size);
  5041.      #define bfd_read_minisymbols(b, d, m, s) \
  5042.        BFD_SEND (b, _read_minisymbols, (b, d, m, s))
  5043.        long        (*_read_minisymbols)
  5044.          (bfd *, bfd_boolean, void **, unsigned int *);
  5045.      #define bfd_minisymbol_to_symbol(b, d, m, f) \
  5046.        BFD_SEND (b, _minisymbol_to_symbol, (b, d, m, f))
  5047.        asymbol *   (*_minisymbol_to_symbol)
  5048.          (bfd *, bfd_boolean, const void *, asymbol *);
  5049.  
  5050.        /* Routines for relocs.  */
  5051.      #define BFD_JUMP_TABLE_RELOCS(NAME) \
  5052.        NAME##_get_reloc_upper_bound, \
  5053.        NAME##_canonicalize_reloc, \
  5054.        NAME##_bfd_reloc_type_lookup
  5055.  
  5056.        long        (*_get_reloc_upper_bound) (bfd *, sec_ptr);
  5057.        long        (*_bfd_canonicalize_reloc)
  5058.          (bfd *, sec_ptr, arelent **, struct bfd_symbol **);
  5059.        /* See documentation on reloc types.  */
  5060.        reloc_howto_type *
  5061.                    (*reloc_type_lookup) (bfd *, bfd_reloc_code_real_type);
  5062.  
  5063.        /* Routines used when writing an object file.  */
  5064.      #define BFD_JUMP_TABLE_WRITE(NAME) \
  5065.        NAME##_set_arch_mach, \
  5066.        NAME##_set_section_contents
  5067.  
  5068.        bfd_boolean (*_bfd_set_arch_mach)
  5069.          (bfd *, enum bfd_architecture, unsigned long);
  5070.        bfd_boolean (*_bfd_set_section_contents)
  5071.          (bfd *, sec_ptr, const void *, file_ptr, bfd_size_type);
  5072.  
  5073.        /* Routines used by the linker.  */
  5074.      #define BFD_JUMP_TABLE_LINK(NAME) \
  5075.        NAME##_sizeof_headers, \
  5076.        NAME##_bfd_get_relocated_section_contents, \
  5077.        NAME##_bfd_relax_section, \
  5078.        NAME##_bfd_link_hash_table_create, \
  5079.        NAME##_bfd_link_hash_table_free, \
  5080.        NAME##_bfd_link_add_symbols, \
  5081.        NAME##_bfd_link_just_syms, \
  5082.        NAME##_bfd_final_link, \
  5083.        NAME##_bfd_link_split_section, \
  5084.        NAME##_bfd_gc_sections, \
  5085.        NAME##_bfd_merge_sections, \
  5086.        NAME##_bfd_is_group_section, \
  5087.        NAME##_bfd_discard_group, \
  5088.        NAME##_section_already_linked \
  5089.  
  5090.        int         (*_bfd_sizeof_headers) (bfd *, bfd_boolean);
  5091.        bfd_byte *  (*_bfd_get_relocated_section_contents)
  5092.          (bfd *, struct bfd_link_info *, struct bfd_link_order *,
  5093.           bfd_byte *, bfd_boolean, struct bfd_symbol **);
  5094.  
  5095.        bfd_boolean (*_bfd_relax_section)
  5096.          (bfd *, struct bfd_section *, struct bfd_link_info *, bfd_boolean *);
  5097.  
  5098.        /* Create a hash table for the linker.  Different backends store
  5099.           different information in this table.  */
  5100.        struct bfd_link_hash_table *
  5101.                    (*_bfd_link_hash_table_create) (bfd *);
  5102.  
  5103.        /* Release the memory associated with the linker hash table.  */
  5104.        void        (*_bfd_link_hash_table_free) (struct bfd_link_hash_table *);
  5105.  
  5106.        /* Add symbols from this object file into the hash table.  */
  5107.        bfd_boolean (*_bfd_link_add_symbols) (bfd *, struct bfd_link_info *);
  5108.  
  5109.        /* Indicate that we are only retrieving symbol values from this section.  */
  5110.        void        (*_bfd_link_just_syms) (asection *, struct bfd_link_info *);
  5111.  
  5112.        /* Do a link based on the link_order structures attached to each
  5113.           section of the BFD.  */
  5114.        bfd_boolean (*_bfd_final_link) (bfd *, struct bfd_link_info *);
  5115.  
  5116.        /* Should this section be split up into smaller pieces during linking.  */
  5117.        bfd_boolean (*_bfd_link_split_section) (bfd *, struct bfd_section *);
  5118.  
  5119.        /* Remove sections that are not referenced from the output.  */
  5120.        bfd_boolean (*_bfd_gc_sections) (bfd *, struct bfd_link_info *);
  5121.  
  5122.        /* Attempt to merge SEC_MERGE sections.  */
  5123.        bfd_boolean (*_bfd_merge_sections) (bfd *, struct bfd_link_info *);
  5124.  
  5125.        /* Is this section a member of a group?  */
  5126.        bfd_boolean (*_bfd_is_group_section) (bfd *, const struct bfd_section *);
  5127.  
  5128.        /* Discard members of a group.  */
  5129.        bfd_boolean (*_bfd_discard_group) (bfd *, struct bfd_section *);
  5130.  
  5131.        /* Check if SEC has been already linked during a reloceatable or
  5132.           final link.  */
  5133.        void (*_section_already_linked) (bfd *, struct bfd_section *);
  5134.  
  5135.        /* Routines to handle dynamic symbols and relocs.  */
  5136.      #define BFD_JUMP_TABLE_DYNAMIC(NAME) \
  5137.        NAME##_get_dynamic_symtab_upper_bound, \
  5138.        NAME##_canonicalize_dynamic_symtab, \
  5139.        NAME##_get_synthetic_symtab, \
  5140.        NAME##_get_dynamic_reloc_upper_bound, \
  5141.        NAME##_canonicalize_dynamic_reloc
  5142.  
  5143.        /* Get the amount of memory required to hold the dynamic symbols.  */
  5144.        long        (*_bfd_get_dynamic_symtab_upper_bound) (bfd *);
  5145.        /* Read in the dynamic symbols.  */
  5146.        long        (*_bfd_canonicalize_dynamic_symtab)
  5147.          (bfd *, struct bfd_symbol **);
  5148.        /* Create synthetized symbols.  */
  5149.        long        (*_bfd_get_synthetic_symtab)
  5150.          (bfd *, long, struct bfd_symbol **, long, struct bfd_symbol **,
  5151.           struct bfd_symbol **);
  5152.        /* Get the amount of memory required to hold the dynamic relocs.  */
  5153.        long        (*_bfd_get_dynamic_reloc_upper_bound) (bfd *);
  5154.        /* Read in the dynamic relocs.  */
  5155.        long        (*_bfd_canonicalize_dynamic_reloc)
  5156.          (bfd *, arelent **, struct bfd_symbol **);
  5157.    A pointer to an alternative bfd_target in case the current one is not
  5158. satisfactory.  This can happen when the target cpu supports both big
  5159. and little endian code, and target chosen by the linker has the wrong
  5160. endianness.  The function open_output() in ld/ldlang.c uses this field
  5161. to find an alternative output format that is suitable.
  5162.        /* Opposite endian version of this target.  */
  5163.        const struct bfd_target * alternative_target;
  5164.  
  5165.        /* Data for use by back-end routines, which isn't
  5166.           generic enough to belong in this structure.  */
  5167.        const void *backend_data;
  5168.  
  5169.      } bfd_target;
  5170.  
  5171. 2.13.1.1 `bfd_set_default_target'
  5172. .................................
  5173.  
  5174. *Synopsis*
  5175.      bfd_boolean bfd_set_default_target (const char *name);
  5176.    *Description*
  5177. Set the default target vector to use when recognizing a BFD.  This
  5178. takes the name of the target, which may be a BFD target name or a
  5179. configuration triplet.
  5180.  
  5181. 2.13.1.2 `bfd_find_target'
  5182. ..........................
  5183.  
  5184. *Synopsis*
  5185.      const bfd_target *bfd_find_target (const char *target_name, bfd *abfd);
  5186.    *Description*
  5187. Return a pointer to the transfer vector for the object target named
  5188. TARGET_NAME.  If TARGET_NAME is `NULL', choose the one in the
  5189. environment variable `GNUTARGET'; if that is null or not defined, then
  5190. choose the first entry in the target list.  Passing in the string
  5191. "default" or setting the environment variable to "default" will cause
  5192. the first entry in the target list to be returned, and
  5193. "target_defaulted" will be set in the BFD.  This causes
  5194. `bfd_check_format' to loop over all the targets to find the one that
  5195. matches the file being read.
  5196.  
  5197. 2.13.1.3 `bfd_target_list'
  5198. ..........................
  5199.  
  5200. *Synopsis*
  5201.      const char ** bfd_target_list (void);
  5202.    *Description*
  5203. Return a freshly malloced NULL-terminated vector of the names of all
  5204. the valid BFD targets. Do not modify the names.
  5205.  
  5206. 2.13.1.4 `bfd_seach_for_target'
  5207. ...............................
  5208.  
  5209. *Synopsis*
  5210.      const bfd_target *bfd_search_for_target
  5211.         (int (*search_func) (const bfd_target *, void *),
  5212.          void *);
  5213.    *Description*
  5214. Return a pointer to the first transfer vector in the list of transfer
  5215. vectors maintained by BFD that produces a non-zero result when passed
  5216. to the function SEARCH_FUNC.  The parameter DATA is passed, unexamined,
  5217. to the search function.
  5218.  
  5219. 
  5220. File: bfd.info,  Node: Architectures,  Next: Opening and Closing,  Prev: Targets,  Up: BFD front end
  5221.  
  5222. 2.14 Architectures
  5223. ==================
  5224.  
  5225. BFD keeps one atom in a BFD describing the architecture of the data
  5226. attached to the BFD: a pointer to a `bfd_arch_info_type'.
  5227.  
  5228.    Pointers to structures can be requested independently of a BFD so
  5229. that an architecture's information can be interrogated without access
  5230. to an open BFD.
  5231.  
  5232.    The architecture information is provided by each architecture
  5233. package.  The set of default architectures is selected by the macro
  5234. `SELECT_ARCHITECTURES'.  This is normally set up in the
  5235. `config/TARGET.mt' file of your choice.  If the name is not defined,
  5236. then all the architectures supported are included.
  5237.  
  5238.    When BFD starts up, all the architectures are called with an
  5239. initialize method.  It is up to the architecture back end to insert as
  5240. many items into the list of architectures as it wants to; generally
  5241. this would be one for each machine and one for the default case (an
  5242. item with a machine field of 0).
  5243.  
  5244.    BFD's idea of an architecture is implemented in `archures.c'.
  5245.  
  5246. 2.14.1 bfd_architecture
  5247. -----------------------
  5248.  
  5249. *Description*
  5250. This enum gives the object file's CPU architecture, in a global
  5251. sense--i.e., what processor family does it belong to?  Another field
  5252. indicates which processor within the family is in use.  The machine
  5253. gives a number which distinguishes different versions of the
  5254. architecture, containing, for example, 2 and 3 for Intel i960 KA and
  5255. i960 KB, and 68020 and 68030 for Motorola 68020 and 68030.
  5256.      enum bfd_architecture
  5257.      {
  5258.        bfd_arch_unknown,   /* File arch not known.  */
  5259.        bfd_arch_obscure,   /* Arch known, not one of these.  */
  5260.        bfd_arch_m68k,      /* Motorola 68xxx */
  5261.      #define bfd_mach_m68000 1
  5262.      #define bfd_mach_m68008 2
  5263.      #define bfd_mach_m68010 3
  5264.      #define bfd_mach_m68020 4
  5265.      #define bfd_mach_m68030 5
  5266.      #define bfd_mach_m68040 6
  5267.      #define bfd_mach_m68060 7
  5268.      #define bfd_mach_cpu32  8
  5269.      #define bfd_mach_mcf5200  9
  5270.      #define bfd_mach_mcf5206e 10
  5271.      #define bfd_mach_mcf5307  11
  5272.      #define bfd_mach_mcf5407  12
  5273.      #define bfd_mach_mcf528x  13
  5274.      #define bfd_mach_mcfv4e   14
  5275.      #define bfd_mach_mcf521x   15
  5276.      #define bfd_mach_mcf5249   16
  5277.      #define bfd_mach_mcf547x   17
  5278.      #define bfd_mach_mcf548x   18
  5279.        bfd_arch_vax,       /* DEC Vax */
  5280.        bfd_arch_i960,      /* Intel 960 */
  5281.          /* The order of the following is important.
  5282.             lower number indicates a machine type that
  5283.             only accepts a subset of the instructions
  5284.             available to machines with higher numbers.
  5285.             The exception is the "ca", which is
  5286.             incompatible with all other machines except
  5287.             "core".  */
  5288.  
  5289.      #define bfd_mach_i960_core      1
  5290.      #define bfd_mach_i960_ka_sa     2
  5291.      #define bfd_mach_i960_kb_sb     3
  5292.      #define bfd_mach_i960_mc        4
  5293.      #define bfd_mach_i960_xa        5
  5294.      #define bfd_mach_i960_ca        6
  5295.      #define bfd_mach_i960_jx        7
  5296.      #define bfd_mach_i960_hx        8
  5297.  
  5298.        bfd_arch_or32,      /* OpenRISC 32 */
  5299.  
  5300.        bfd_arch_a29k,      /* AMD 29000 */
  5301.        bfd_arch_sparc,     /* SPARC */
  5302.      #define bfd_mach_sparc                 1
  5303.      /* The difference between v8plus and v9 is that v9 is a true 64 bit env.  */
  5304.      #define bfd_mach_sparc_sparclet        2
  5305.      #define bfd_mach_sparc_sparclite       3
  5306.      #define bfd_mach_sparc_v8plus          4
  5307.      #define bfd_mach_sparc_v8plusa         5 /* with ultrasparc add'ns.  */
  5308.      #define bfd_mach_sparc_sparclite_le    6
  5309.      #define bfd_mach_sparc_v9              7
  5310.      #define bfd_mach_sparc_v9a             8 /* with ultrasparc add'ns.  */
  5311.      #define bfd_mach_sparc_v8plusb         9 /* with cheetah add'ns.  */
  5312.      #define bfd_mach_sparc_v9b             10 /* with cheetah add'ns.  */
  5313.      /* Nonzero if MACH has the v9 instruction set.  */
  5314.      #define bfd_mach_sparc_v9_p(mach) \
  5315.        ((mach) >= bfd_mach_sparc_v8plus && (mach) <= bfd_mach_sparc_v9b \
  5316.         && (mach) != bfd_mach_sparc_sparclite_le)
  5317.      /* Nonzero if MACH is a 64 bit sparc architecture.  */
  5318.      #define bfd_mach_sparc_64bit_p(mach) \
  5319.        ((mach) >= bfd_mach_sparc_v9 && (mach) != bfd_mach_sparc_v8plusb)
  5320.        bfd_arch_mips,      /* MIPS Rxxxx */
  5321.      #define bfd_mach_mips3000              3000
  5322.      #define bfd_mach_mips3900              3900
  5323.      #define bfd_mach_mips4000              4000
  5324.      #define bfd_mach_mips4010              4010
  5325.      #define bfd_mach_mips4100              4100
  5326.      #define bfd_mach_mips4111              4111
  5327.      #define bfd_mach_mips4120              4120
  5328.      #define bfd_mach_mips4300              4300
  5329.      #define bfd_mach_mips4400              4400
  5330.      #define bfd_mach_mips4600              4600
  5331.      #define bfd_mach_mips4650              4650
  5332.      #define bfd_mach_mips5000              5000
  5333.      #define bfd_mach_mips5400              5400
  5334.      #define bfd_mach_mips5500              5500
  5335.      #define bfd_mach_mips6000              6000
  5336.      #define bfd_mach_mips7000              7000
  5337.      #define bfd_mach_mips8000              8000
  5338.      #define bfd_mach_mips9000              9000
  5339.      #define bfd_mach_mips10000             10000
  5340.      #define bfd_mach_mips12000             12000
  5341.      #define bfd_mach_mips16                16
  5342.      #define bfd_mach_mips5                 5
  5343.      #define bfd_mach_mips_sb1              12310201 /* octal 'SB', 01 */
  5344.      #define bfd_mach_mipsisa32             32
  5345.      #define bfd_mach_mipsisa32r2           33
  5346.      #define bfd_mach_mipsisa64             64
  5347.      #define bfd_mach_mipsisa64r2           65
  5348.        bfd_arch_i386,      /* Intel 386 */
  5349.      #define bfd_mach_i386_i386 1
  5350.      #define bfd_mach_i386_i8086 2
  5351.      #define bfd_mach_i386_i386_intel_syntax 3
  5352.      #define bfd_mach_x86_64 64
  5353.      #define bfd_mach_x86_64_intel_syntax 65
  5354.        bfd_arch_we32k,     /* AT&T WE32xxx */
  5355.        bfd_arch_tahoe,     /* CCI/Harris Tahoe */
  5356.        bfd_arch_i860,      /* Intel 860 */
  5357.        bfd_arch_i370,      /* IBM 360/370 Mainframes */
  5358.        bfd_arch_romp,      /* IBM ROMP PC/RT */
  5359.        bfd_arch_alliant,   /* Alliant */
  5360.        bfd_arch_convex,    /* Convex */
  5361.        bfd_arch_m88k,      /* Motorola 88xxx */
  5362.        bfd_arch_m98k,      /* Motorola 98xxx */
  5363.        bfd_arch_pyramid,   /* Pyramid Technology */
  5364.        bfd_arch_h8300,     /* Renesas H8/300 (formerly Hitachi H8/300) */
  5365.      #define bfd_mach_h8300    1
  5366.      #define bfd_mach_h8300h   2
  5367.      #define bfd_mach_h8300s   3
  5368.      #define bfd_mach_h8300hn  4
  5369.      #define bfd_mach_h8300sn  5
  5370.      #define bfd_mach_h8300sx  6
  5371.      #define bfd_mach_h8300sxn 7
  5372.        bfd_arch_pdp11,     /* DEC PDP-11 */
  5373.        bfd_arch_powerpc,   /* PowerPC */
  5374.      #define bfd_mach_ppc           32
  5375.      #define bfd_mach_ppc64         64
  5376.      #define bfd_mach_ppc_403       403
  5377.      #define bfd_mach_ppc_403gc     4030
  5378.      #define bfd_mach_ppc_505       505
  5379.      #define bfd_mach_ppc_601       601
  5380.      #define bfd_mach_ppc_602       602
  5381.      #define bfd_mach_ppc_603       603
  5382.      #define bfd_mach_ppc_ec603e    6031
  5383.      #define bfd_mach_ppc_604       604
  5384.      #define bfd_mach_ppc_620       620
  5385.      #define bfd_mach_ppc_630       630
  5386.      #define bfd_mach_ppc_750       750
  5387.      #define bfd_mach_ppc_860       860
  5388.      #define bfd_mach_ppc_a35       35
  5389.      #define bfd_mach_ppc_rs64ii    642
  5390.      #define bfd_mach_ppc_rs64iii   643
  5391.      #define bfd_mach_ppc_7400      7400
  5392.      #define bfd_mach_ppc_e500      500
  5393.        bfd_arch_rs6000,    /* IBM RS/6000 */
  5394.      #define bfd_mach_rs6k          6000
  5395.      #define bfd_mach_rs6k_rs1      6001
  5396.      #define bfd_mach_rs6k_rsc      6003
  5397.      #define bfd_mach_rs6k_rs2      6002
  5398.        bfd_arch_hppa,      /* HP PA RISC */
  5399.      #define bfd_mach_hppa10        10
  5400.      #define bfd_mach_hppa11        11
  5401.      #define bfd_mach_hppa20        20
  5402.      #define bfd_mach_hppa20w       25
  5403.        bfd_arch_d10v,      /* Mitsubishi D10V */
  5404.      #define bfd_mach_d10v          1
  5405.      #define bfd_mach_d10v_ts2      2
  5406.      #define bfd_mach_d10v_ts3      3
  5407.        bfd_arch_d30v,      /* Mitsubishi D30V */
  5408.        bfd_arch_dlx,       /* DLX */
  5409.        bfd_arch_m68hc11,   /* Motorola 68HC11 */
  5410.        bfd_arch_m68hc12,   /* Motorola 68HC12 */
  5411.      #define bfd_mach_m6812_default 0
  5412.      #define bfd_mach_m6812         1
  5413.      #define bfd_mach_m6812s        2
  5414.        bfd_arch_z8k,       /* Zilog Z8000 */
  5415.      #define bfd_mach_z8001         1
  5416.      #define bfd_mach_z8002         2
  5417.        bfd_arch_h8500,     /* Renesas H8/500 (formerly Hitachi H8/500) */
  5418.        bfd_arch_sh,        /* Renesas / SuperH SH (formerly Hitachi SH) */
  5419.      #define bfd_mach_sh            1
  5420.      #define bfd_mach_sh2        0x20
  5421.      #define bfd_mach_sh_dsp     0x2d
  5422.      #define bfd_mach_sh2a       0x2a
  5423.      #define bfd_mach_sh2a_nofpu 0x2b
  5424.      #define bfd_mach_sh2a_nofpu_or_sh4_nommu_nofpu 0x2a1
  5425.      #define bfd_mach_sh2a_nofpu_or_sh3_nommu 0x2a2
  5426.      #define bfd_mach_sh2a_or_sh4  0x2a3
  5427.      #define bfd_mach_sh2a_or_sh3e 0x2a4
  5428.      #define bfd_mach_sh2e       0x2e
  5429.      #define bfd_mach_sh3        0x30
  5430.      #define bfd_mach_sh3_nommu  0x31
  5431.      #define bfd_mach_sh3_dsp    0x3d
  5432.      #define bfd_mach_sh3e       0x3e
  5433.      #define bfd_mach_sh4        0x40
  5434.      #define bfd_mach_sh4_nofpu  0x41
  5435.      #define bfd_mach_sh4_nommu_nofpu  0x42
  5436.      #define bfd_mach_sh4a       0x4a
  5437.      #define bfd_mach_sh4a_nofpu 0x4b
  5438.      #define bfd_mach_sh4al_dsp  0x4d
  5439.      #define bfd_mach_sh5        0x50
  5440.        bfd_arch_alpha,     /* Dec Alpha */
  5441.      #define bfd_mach_alpha_ev4  0x10
  5442.      #define bfd_mach_alpha_ev5  0x20
  5443.      #define bfd_mach_alpha_ev6  0x30
  5444.        bfd_arch_arm,       /* Advanced Risc Machines ARM.  */
  5445.      #define bfd_mach_arm_unknown   0
  5446.      #define bfd_mach_arm_2         1
  5447.      #define bfd_mach_arm_2a        2
  5448.      #define bfd_mach_arm_3         3
  5449.      #define bfd_mach_arm_3M        4
  5450.      #define bfd_mach_arm_4         5
  5451.      #define bfd_mach_arm_4T        6
  5452.      #define bfd_mach_arm_5         7
  5453.      #define bfd_mach_arm_5T        8
  5454.      #define bfd_mach_arm_5TE       9
  5455.      #define bfd_mach_arm_XScale    10
  5456.      #define bfd_mach_arm_ep9312    11
  5457.      #define bfd_mach_arm_iWMMXt    12
  5458.        bfd_arch_ns32k,     /* National Semiconductors ns32000 */
  5459.        bfd_arch_w65,       /* WDC 65816 */
  5460.        bfd_arch_tic30,     /* Texas Instruments TMS320C30 */
  5461.        bfd_arch_tic4x,     /* Texas Instruments TMS320C3X/4X */
  5462.      #define bfd_mach_tic3x         30
  5463.      #define bfd_mach_tic4x         40
  5464.        bfd_arch_tic54x,    /* Texas Instruments TMS320C54X */
  5465.        bfd_arch_tic80,     /* TI TMS320c80 (MVP) */
  5466.        bfd_arch_v850,      /* NEC V850 */
  5467.      #define bfd_mach_v850          1
  5468.      #define bfd_mach_v850e         'E'
  5469.      #define bfd_mach_v850e1        '1'
  5470.        bfd_arch_arc,       /* ARC Cores */
  5471.      #define bfd_mach_arc_5         5
  5472.      #define bfd_mach_arc_6         6
  5473.      #define bfd_mach_arc_7         7
  5474.      #define bfd_mach_arc_8         8
  5475.        bfd_arch_m32r,      /* Renesas M32R (formerly Mitsubishi M32R/D) */
  5476.      #define bfd_mach_m32r          1 /* For backwards compatibility.  */
  5477.      #define bfd_mach_m32rx         'x'
  5478.      #define bfd_mach_m32r2         '2'
  5479.        bfd_arch_mn10200,   /* Matsushita MN10200 */
  5480.        bfd_arch_mn10300,   /* Matsushita MN10300 */
  5481.      #define bfd_mach_mn10300               300
  5482.      #define bfd_mach_am33          330
  5483.      #define bfd_mach_am33_2        332
  5484.        bfd_arch_fr30,
  5485.      #define bfd_mach_fr30          0x46523330
  5486.        bfd_arch_frv,
  5487.      #define bfd_mach_frv           1
  5488.      #define bfd_mach_frvsimple     2
  5489.      #define bfd_mach_fr300         300
  5490.      #define bfd_mach_fr400         400
  5491.      #define bfd_mach_fr450         450
  5492.      #define bfd_mach_frvtomcat     499     /* fr500 prototype */
  5493.      #define bfd_mach_fr500         500
  5494.      #define bfd_mach_fr550         550
  5495.        bfd_arch_mcore,
  5496.        bfd_arch_ia64,      /* HP/Intel ia64 */
  5497.      #define bfd_mach_ia64_elf64    64
  5498.      #define bfd_mach_ia64_elf32    32
  5499.        bfd_arch_ip2k,      /* Ubicom IP2K microcontrollers. */
  5500.      #define bfd_mach_ip2022        1
  5501.      #define bfd_mach_ip2022ext     2
  5502.       bfd_arch_iq2000,     /* Vitesse IQ2000.  */
  5503.      #define bfd_mach_iq2000        1
  5504.      #define bfd_mach_iq10          2
  5505.        bfd_arch_pj,
  5506.        bfd_arch_avr,       /* Atmel AVR microcontrollers.  */
  5507.      #define bfd_mach_avr1          1
  5508.      #define bfd_mach_avr2          2
  5509.      #define bfd_mach_avr3          3
  5510.      #define bfd_mach_avr4          4
  5511.      #define bfd_mach_avr5          5
  5512.        bfd_arch_cr16c,       /* National Semiconductor CompactRISC. */
  5513.      #define bfd_mach_cr16c         1
  5514.        bfd_arch_crx,       /*  National Semiconductor CRX.  */
  5515.      #define bfd_mach_crx           1
  5516.        bfd_arch_cris,      /* Axis CRIS */
  5517.      #define bfd_mach_cris_v0_v10   255
  5518.      #define bfd_mach_cris_v32      32
  5519.      #define bfd_mach_cris_v10_v32  1032
  5520.        bfd_arch_s390,      /* IBM s390 */
  5521.      #define bfd_mach_s390_31       31
  5522.      #define bfd_mach_s390_64       64
  5523.        bfd_arch_openrisc,  /* OpenRISC */
  5524.        bfd_arch_mmix,      /* Donald Knuth's educational processor.  */
  5525.        bfd_arch_xstormy16,
  5526.      #define bfd_mach_xstormy16     1
  5527.        bfd_arch_msp430,    /* Texas Instruments MSP430 architecture.  */
  5528.      #define bfd_mach_msp11          11
  5529.      #define bfd_mach_msp110         110
  5530.      #define bfd_mach_msp12          12
  5531.      #define bfd_mach_msp13          13
  5532.      #define bfd_mach_msp14          14
  5533.      #define bfd_mach_msp15          15
  5534.      #define bfd_mach_msp16          16
  5535.      #define bfd_mach_msp31          31
  5536.      #define bfd_mach_msp32          32
  5537.      #define bfd_mach_msp33          33
  5538.      #define bfd_mach_msp41          41
  5539.      #define bfd_mach_msp42          42
  5540.      #define bfd_mach_msp43          43
  5541.      #define bfd_mach_msp44          44
  5542.        bfd_arch_xtensa,    /* Tensilica's Xtensa cores.  */
  5543.      #define bfd_mach_xtensa        1
  5544.         bfd_arch_maxq,     /* Dallas MAXQ 10/20 */
  5545.      #define bfd_mach_maxq10    10
  5546.      #define bfd_mach_maxq20    20
  5547.        bfd_arch_last
  5548.        };
  5549.  
  5550. 2.14.2 bfd_arch_info
  5551. --------------------
  5552.  
  5553. *Description*
  5554. This structure contains information on architectures for use within BFD.
  5555.  
  5556.      typedef struct bfd_arch_info
  5557.      {
  5558.        int bits_per_word;
  5559.        int bits_per_address;
  5560.        int bits_per_byte;
  5561.        enum bfd_architecture arch;
  5562.        unsigned long mach;
  5563.        const char *arch_name;
  5564.        const char *printable_name;
  5565.        unsigned int section_align_power;
  5566.        /* TRUE if this is the default machine for the architecture.
  5567.           The default arch should be the first entry for an arch so that
  5568.           all the entries for that arch can be accessed via `next'.  */
  5569.        bfd_boolean the_default;
  5570.        const struct bfd_arch_info * (*compatible)
  5571.          (const struct bfd_arch_info *a, const struct bfd_arch_info *b);
  5572.  
  5573.        bfd_boolean (*scan) (const struct bfd_arch_info *, const char *);
  5574.  
  5575.        const struct bfd_arch_info *next;
  5576.      }
  5577.      bfd_arch_info_type;
  5578.  
  5579. 2.14.2.1 `bfd_printable_name'
  5580. .............................
  5581.  
  5582. *Synopsis*
  5583.      const char *bfd_printable_name (bfd *abfd);
  5584.    *Description*
  5585. Return a printable string representing the architecture and machine
  5586. from the pointer to the architecture info structure.
  5587.  
  5588. 2.14.2.2 `bfd_scan_arch'
  5589. ........................
  5590.  
  5591. *Synopsis*
  5592.      const bfd_arch_info_type *bfd_scan_arch (const char *string);
  5593.    *Description*
  5594. Figure out if BFD supports any cpu which could be described with the
  5595. name STRING.  Return a pointer to an `arch_info' structure if a machine
  5596. is found, otherwise NULL.
  5597.  
  5598. 2.14.2.3 `bfd_arch_list'
  5599. ........................
  5600.  
  5601. *Synopsis*
  5602.      const char **bfd_arch_list (void);
  5603.    *Description*
  5604. Return a freshly malloced NULL-terminated vector of the names of all
  5605. the valid BFD architectures.  Do not modify the names.
  5606.  
  5607. 2.14.2.4 `bfd_arch_get_compatible'
  5608. ..................................
  5609.  
  5610. *Synopsis*
  5611.      const bfd_arch_info_type *bfd_arch_get_compatible
  5612.         (const bfd *abfd, const bfd *bbfd, bfd_boolean accept_unknowns);
  5613.    *Description*
  5614. Determine whether two BFDs' architectures and machine types are
  5615. compatible.  Calculates the lowest common denominator between the two
  5616. architectures and machine types implied by the BFDs and returns a
  5617. pointer to an `arch_info' structure describing the compatible machine.
  5618.  
  5619. 2.14.2.5 `bfd_default_arch_struct'
  5620. ..................................
  5621.  
  5622. *Description*
  5623. The `bfd_default_arch_struct' is an item of `bfd_arch_info_type' which
  5624. has been initialized to a fairly generic state.  A BFD starts life by
  5625. pointing to this structure, until the correct back end has determined
  5626. the real architecture of the file.
  5627.      extern const bfd_arch_info_type bfd_default_arch_struct;
  5628.  
  5629. 2.14.2.6 `bfd_set_arch_info'
  5630. ............................
  5631.  
  5632. *Synopsis*
  5633.      void bfd_set_arch_info (bfd *abfd, const bfd_arch_info_type *arg);
  5634.    *Description*
  5635. Set the architecture info of ABFD to ARG.
  5636.  
  5637. 2.14.2.7 `bfd_default_set_arch_mach'
  5638. ....................................
  5639.  
  5640. *Synopsis*
  5641.      bfd_boolean bfd_default_set_arch_mach
  5642.         (bfd *abfd, enum bfd_architecture arch, unsigned long mach);
  5643.    *Description*
  5644. Set the architecture and machine type in BFD ABFD to ARCH and MACH.
  5645. Find the correct pointer to a structure and insert it into the
  5646. `arch_info' pointer.
  5647.  
  5648. 2.14.2.8 `bfd_get_arch'
  5649. .......................
  5650.  
  5651. *Synopsis*
  5652.      enum bfd_architecture bfd_get_arch (bfd *abfd);
  5653.    *Description*
  5654. Return the enumerated type which describes the BFD ABFD's architecture.
  5655.  
  5656. 2.14.2.9 `bfd_get_mach'
  5657. .......................
  5658.  
  5659. *Synopsis*
  5660.      unsigned long bfd_get_mach (bfd *abfd);
  5661.    *Description*
  5662. Return the long type which describes the BFD ABFD's machine.
  5663.  
  5664. 2.14.2.10 `bfd_arch_bits_per_byte'
  5665. ..................................
  5666.  
  5667. *Synopsis*
  5668.      unsigned int bfd_arch_bits_per_byte (bfd *abfd);
  5669.    *Description*
  5670. Return the number of bits in one of the BFD ABFD's architecture's bytes.
  5671.  
  5672. 2.14.2.11 `bfd_arch_bits_per_address'
  5673. .....................................
  5674.  
  5675. *Synopsis*
  5676.      unsigned int bfd_arch_bits_per_address (bfd *abfd);
  5677.    *Description*
  5678. Return the number of bits in one of the BFD ABFD's architecture's
  5679. addresses.
  5680.  
  5681. 2.14.2.12 `bfd_default_compatible'
  5682. ..................................
  5683.  
  5684. *Synopsis*
  5685.      const bfd_arch_info_type *bfd_default_compatible
  5686.         (const bfd_arch_info_type *a, const bfd_arch_info_type *b);
  5687.    *Description*
  5688. The default function for testing for compatibility.
  5689.  
  5690. 2.14.2.13 `bfd_default_scan'
  5691. ............................
  5692.  
  5693. *Synopsis*
  5694.      bfd_boolean bfd_default_scan
  5695.         (const struct bfd_arch_info *info, const char *string);
  5696.    *Description*
  5697. The default function for working out whether this is an architecture
  5698. hit and a machine hit.
  5699.  
  5700. 2.14.2.14 `bfd_get_arch_info'
  5701. .............................
  5702.  
  5703. *Synopsis*
  5704.      const bfd_arch_info_type *bfd_get_arch_info (bfd *abfd);
  5705.    *Description*
  5706. Return the architecture info struct in ABFD.
  5707.  
  5708. 2.14.2.15 `bfd_lookup_arch'
  5709. ...........................
  5710.  
  5711. *Synopsis*
  5712.      const bfd_arch_info_type *bfd_lookup_arch
  5713.         (enum bfd_architecture arch, unsigned long machine);
  5714.    *Description*
  5715. Look for the architecture info structure which matches the arguments
  5716. ARCH and MACHINE. A machine of 0 matches the machine/architecture
  5717. structure which marks itself as the default.
  5718.  
  5719. 2.14.2.16 `bfd_printable_arch_mach'
  5720. ...................................
  5721.  
  5722. *Synopsis*
  5723.      const char *bfd_printable_arch_mach
  5724.         (enum bfd_architecture arch, unsigned long machine);
  5725.    *Description*
  5726. Return a printable string representing the architecture and machine
  5727. type.
  5728.  
  5729.    This routine is depreciated.
  5730.  
  5731. 2.14.2.17 `bfd_octets_per_byte'
  5732. ...............................
  5733.  
  5734. *Synopsis*
  5735.      unsigned int bfd_octets_per_byte (bfd *abfd);
  5736.    *Description*
  5737. Return the number of octets (8-bit quantities) per target byte (minimum
  5738. addressable unit).  In most cases, this will be one, but some DSP
  5739. targets have 16, 32, or even 48 bits per byte.
  5740.  
  5741. 2.14.2.18 `bfd_arch_mach_octets_per_byte'
  5742. .........................................
  5743.  
  5744. *Synopsis*
  5745.      unsigned int bfd_arch_mach_octets_per_byte
  5746.         (enum bfd_architecture arch, unsigned long machine);
  5747.    *Description*
  5748. See bfd_octets_per_byte.
  5749.  
  5750.    This routine is provided for those cases where a bfd * is not
  5751. available
  5752.  
  5753. 
  5754. File: bfd.info,  Node: Opening and Closing,  Next: Internal,  Prev: Architectures,  Up: BFD front end
  5755.  
  5756. 2.15 Opening and closing BFDs
  5757. =============================
  5758.  
  5759. 2.15.0.1 `bfd_openr'
  5760. ....................
  5761.  
  5762. *Synopsis*
  5763.      bfd *bfd_openr (const char *filename, const char *target);
  5764.    *Description*
  5765. Open the file FILENAME (using `fopen') with the target TARGET.  Return
  5766. a pointer to the created BFD.
  5767.  
  5768.    Calls `bfd_find_target', so TARGET is interpreted as by that
  5769. function.
  5770.  
  5771.    If `NULL' is returned then an error has occured.   Possible errors
  5772. are `bfd_error_no_memory', `bfd_error_invalid_target' or `system_call'
  5773. error.
  5774.  
  5775. 2.15.0.2 `bfd_fdopenr'
  5776. ......................
  5777.  
  5778. *Synopsis*
  5779.      bfd *bfd_fdopenr (const char *filename, const char *target, int fd);
  5780.    *Description*
  5781. `bfd_fdopenr' is to `bfd_fopenr' much like `fdopen' is to `fopen'.  It
  5782. opens a BFD on a file already described by the FD supplied.
  5783.  
  5784.    When the file is later `bfd_close'd, the file descriptor will be
  5785. closed.  If the caller desires that this file descriptor be cached by
  5786. BFD (opened as needed, closed as needed to free descriptors for other
  5787. opens), with the supplied FD used as an initial file descriptor (but
  5788. subject to closure at any time), call bfd_set_cacheable(bfd, 1) on the
  5789. returned BFD.  The default is to assume no caching; the file descriptor
  5790. will remain open until `bfd_close', and will not be affected by BFD
  5791. operations on other files.
  5792.  
  5793.    Possible errors are `bfd_error_no_memory',
  5794. `bfd_error_invalid_target' and `bfd_error_system_call'.
  5795.  
  5796. 2.15.0.3 `bfd_openstreamr'
  5797. ..........................
  5798.  
  5799. *Synopsis*
  5800.      bfd *bfd_openstreamr (const char *, const char *, void *);
  5801.    *Description*
  5802. Open a BFD for read access on an existing stdio stream.  When the BFD
  5803. is passed to `bfd_close', the stream will be closed.
  5804.  
  5805. 2.15.0.4 `bfd_openr_iovec'
  5806. ..........................
  5807.  
  5808. *Synopsis*
  5809.      bfd *bfd_openr_iovec (const char *filename, const char *target,
  5810.          void *(*open) (struct bfd *nbfd,
  5811.          void *open_closure),
  5812.          void *open_closure,
  5813.          file_ptr (*pread) (struct bfd *nbfd,
  5814.          void *stream,
  5815.          void *buf,
  5816.          file_ptr nbytes,
  5817.          file_ptr offset),
  5818.          int (*close) (struct bfd *nbfd,
  5819.          void *stream));
  5820.    *Description*
  5821. Create and return a BFD backed by a read-only STREAM.  The STREAM is
  5822. created using OPEN, accessed using PREAD and destroyed using CLOSE.
  5823.  
  5824.    Calls `bfd_find_target', so TARGET is interpreted as by that
  5825. function.
  5826.  
  5827.    Calls OPEN (which can call `bfd_zalloc' and `bfd_get_filename') to
  5828. obtain the read-only stream backing the BFD.  OPEN either succeeds
  5829. returning the non-`NULL' STREAM, or fails returning `NULL' (setting
  5830. `bfd_error').
  5831.  
  5832.    Calls PREAD to request NBYTES of data from STREAM starting at OFFSET
  5833. (e.g., via a call to `bfd_read').  PREAD either succeeds returning the
  5834. number of bytes read (which can be less than NBYTES when end-of-file),
  5835. or fails returning -1 (setting `bfd_error').
  5836.  
  5837.    Calls CLOSE when the BFD is later closed using `bfd_close'.  CLOSE
  5838. either succeeds returning 0, or fails returning -1 (setting
  5839. `bfd_error').
  5840.  
  5841.    If `bfd_openr_iovec' returns `NULL' then an error has occurred.
  5842. Possible errors are `bfd_error_no_memory', `bfd_error_invalid_target'
  5843. and `bfd_error_system_call'.
  5844.  
  5845. 2.15.0.5 `bfd_openw'
  5846. ....................
  5847.  
  5848. *Synopsis*
  5849.      bfd *bfd_openw (const char *filename, const char *target);
  5850.    *Description*
  5851. Create a BFD, associated with file FILENAME, using the file format
  5852. TARGET, and return a pointer to it.
  5853.  
  5854.    Possible errors are `bfd_error_system_call', `bfd_error_no_memory',
  5855. `bfd_error_invalid_target'.
  5856.  
  5857. 2.15.0.6 `bfd_close'
  5858. ....................
  5859.  
  5860. *Synopsis*
  5861.      bfd_boolean bfd_close (bfd *abfd);
  5862.    *Description*
  5863. Close a BFD. If the BFD was open for writing, then pending operations
  5864. are completed and the file written out and closed.  If the created file
  5865. is executable, then `chmod' is called to mark it as such.
  5866.  
  5867.    All memory attached to the BFD is released.
  5868.  
  5869.    The file descriptor associated with the BFD is closed (even if it
  5870. was passed in to BFD by `bfd_fdopenr').
  5871.  
  5872.    *Returns*
  5873. `TRUE' is returned if all is ok, otherwise `FALSE'.
  5874.  
  5875. 2.15.0.7 `bfd_close_all_done'
  5876. .............................
  5877.  
  5878. *Synopsis*
  5879.      bfd_boolean bfd_close_all_done (bfd *);
  5880.    *Description*
  5881. Close a BFD.  Differs from `bfd_close' since it does not complete any
  5882. pending operations.  This routine would be used if the application had
  5883. just used BFD for swapping and didn't want to use any of the writing
  5884. code.
  5885.  
  5886.    If the created file is executable, then `chmod' is called to mark it
  5887. as such.
  5888.  
  5889.    All memory attached to the BFD is released.
  5890.  
  5891.    *Returns*
  5892. `TRUE' is returned if all is ok, otherwise `FALSE'.
  5893.  
  5894. 2.15.0.8 `bfd_create'
  5895. .....................
  5896.  
  5897. *Synopsis*
  5898.      bfd *bfd_create (const char *filename, bfd *templ);
  5899.    *Description*
  5900. Create a new BFD in the manner of `bfd_openw', but without opening a
  5901. file. The new BFD takes the target from the target used by TEMPLATE.
  5902. The format is always set to `bfd_object'.
  5903.  
  5904. 2.15.0.9 `bfd_make_writable'
  5905. ............................
  5906.  
  5907. *Synopsis*
  5908.      bfd_boolean bfd_make_writable (bfd *abfd);
  5909.    *Description*
  5910. Takes a BFD as created by `bfd_create' and converts it into one like as
  5911. returned by `bfd_openw'.  It does this by converting the BFD to
  5912. BFD_IN_MEMORY.  It's assumed that you will call `bfd_make_readable' on
  5913. this bfd later.
  5914.  
  5915.    *Returns*
  5916. `TRUE' is returned if all is ok, otherwise `FALSE'.
  5917.  
  5918. 2.15.0.10 `bfd_make_readable'
  5919. .............................
  5920.  
  5921. *Synopsis*
  5922.      bfd_boolean bfd_make_readable (bfd *abfd);
  5923.    *Description*
  5924. Takes a BFD as created by `bfd_create' and `bfd_make_writable' and
  5925. converts it into one like as returned by `bfd_openr'.  It does this by
  5926. writing the contents out to the memory buffer, then reversing the
  5927. direction.
  5928.  
  5929.    *Returns*
  5930. `TRUE' is returned if all is ok, otherwise `FALSE'.
  5931.  
  5932. 2.15.0.11 `bfd_alloc'
  5933. .....................
  5934.  
  5935. *Synopsis*
  5936.      void *bfd_alloc (bfd *abfd, bfd_size_type wanted);
  5937.    *Description*
  5938. Allocate a block of WANTED bytes of memory attached to `abfd' and
  5939. return a pointer to it.
  5940.  
  5941. 2.15.0.12 `bfd_zalloc'
  5942. ......................
  5943.  
  5944. *Synopsis*
  5945.      void *bfd_zalloc (bfd *abfd, bfd_size_type wanted);
  5946.    *Description*
  5947. Allocate a block of WANTED bytes of zeroed memory attached to `abfd'
  5948. and return a pointer to it.
  5949.  
  5950. 2.15.0.13 `bfd_calc_gnu_debuglink_crc32'
  5951. ........................................
  5952.  
  5953. *Synopsis*
  5954.      unsigned long bfd_calc_gnu_debuglink_crc32
  5955.         (unsigned long crc, const unsigned char *buf, bfd_size_type len);
  5956.    *Description*
  5957. Computes a CRC value as used in the .gnu_debuglink section.  Advances
  5958. the previously computed CRC value by computing and adding in the crc32
  5959. for LEN bytes of BUF.
  5960.  
  5961.    *Returns*
  5962. Return the updated CRC32 value.
  5963.  
  5964. 2.15.0.14 `get_debug_link_info'
  5965. ...............................
  5966.  
  5967. *Synopsis*
  5968.      char *get_debug_link_info (bfd *abfd, unsigned long *crc32_out);
  5969.    *Description*
  5970. fetch the filename and CRC32 value for any separate debuginfo
  5971. associated with ABFD. Return NULL if no such info found, otherwise
  5972. return filename and update CRC32_OUT.
  5973.  
  5974. 2.15.0.15 `separate_debug_file_exists'
  5975. ......................................
  5976.  
  5977. *Synopsis*
  5978.      bfd_boolean separate_debug_file_exists
  5979.         (char *name, unsigned long crc32);
  5980.    *Description*
  5981. Checks to see if NAME is a file and if its contents match CRC32.
  5982.  
  5983. 2.15.0.16 `find_separate_debug_file'
  5984. ....................................
  5985.  
  5986. *Synopsis*
  5987.      char *find_separate_debug_file (bfd *abfd);
  5988.    *Description*
  5989. Searches ABFD for a reference to separate debugging information, scans
  5990. various locations in the filesystem, including the file tree rooted at
  5991. DEBUG_FILE_DIRECTORY, and returns a filename of such debugging
  5992. information if the file is found and has matching CRC32.  Returns NULL
  5993. if no reference to debugging file exists, or file cannot be found.
  5994.  
  5995. 2.15.0.17 `bfd_follow_gnu_debuglink'
  5996. ....................................
  5997.  
  5998. *Synopsis*
  5999.      char *bfd_follow_gnu_debuglink (bfd *abfd, const char *dir);
  6000.    *Description*
  6001. Takes a BFD and searches it for a .gnu_debuglink section.  If this
  6002. section is found, it examines the section for the name and checksum of
  6003. a '.debug' file containing auxiliary debugging information.  It then
  6004. searches the filesystem for this .debug file in some standard
  6005. locations, including the directory tree rooted at DIR, and if found
  6006. returns the full filename.
  6007.  
  6008.    If DIR is NULL, it will search a default path configured into libbfd
  6009. at build time.  [XXX this feature is not currently implemented].
  6010.  
  6011.    *Returns*
  6012. `NULL' on any errors or failure to locate the .debug file, otherwise a
  6013. pointer to a heap-allocated string containing the filename.  The caller
  6014. is responsible for freeing this string.
  6015.  
  6016. 2.15.0.18 `bfd_create_gnu_debuglink_section'
  6017. ............................................
  6018.  
  6019. *Synopsis*
  6020.      struct bfd_section *bfd_create_gnu_debuglink_section
  6021.         (bfd *abfd, const char *filename);
  6022.    *Description*
  6023. Takes a BFD and adds a .gnu_debuglink section to it.  The section is
  6024. sized to be big enough to contain a link to the specified FILENAME.
  6025.  
  6026.    *Returns*
  6027. A pointer to the new section is returned if all is ok.  Otherwise
  6028. `NULL' is returned and bfd_error is set.
  6029.  
  6030. 2.15.0.19 `bfd_fill_in_gnu_debuglink_section'
  6031. .............................................
  6032.  
  6033. *Synopsis*
  6034.      bfd_boolean bfd_fill_in_gnu_debuglink_section
  6035.         (bfd *abfd, struct bfd_section *sect, const char *filename);
  6036.    *Description*
  6037. Takes a BFD and containing a .gnu_debuglink section SECT and fills in
  6038. the contents of the section to contain a link to the specified
  6039. FILENAME.  The filename should be relative to the current directory.
  6040.  
  6041.    *Returns*
  6042. `TRUE' is returned if all is ok.  Otherwise `FALSE' is returned and
  6043. bfd_error is set.
  6044.  
  6045. 
  6046. File: bfd.info,  Node: Internal,  Next: File Caching,  Prev: Opening and Closing,  Up: BFD front end
  6047.  
  6048. 2.16 Internal functions
  6049. =======================
  6050.  
  6051. *Description*
  6052. These routines are used within BFD.  They are not intended for export,
  6053. but are documented here for completeness.
  6054.  
  6055. 2.16.0.1 `bfd_write_bigendian_4byte_int'
  6056. ........................................
  6057.  
  6058. *Synopsis*
  6059.      bfd_boolean bfd_write_bigendian_4byte_int (bfd *, unsigned int);
  6060.    *Description*
  6061. Write a 4 byte integer I to the output BFD ABFD, in big endian order
  6062. regardless of what else is going on.  This is useful in archives.
  6063.  
  6064. 2.16.0.2 `bfd_put_size'
  6065. .......................
  6066.  
  6067. 2.16.0.3 `bfd_get_size'
  6068. .......................
  6069.  
  6070. *Description*
  6071. These macros as used for reading and writing raw data in sections; each
  6072. access (except for bytes) is vectored through the target format of the
  6073. BFD and mangled accordingly. The mangling performs any necessary endian
  6074. translations and removes alignment restrictions.  Note that types
  6075. accepted and returned by these macros are identical so they can be
  6076. swapped around in macros--for example, `libaout.h' defines `GET_WORD'
  6077. to either `bfd_get_32' or `bfd_get_64'.
  6078.  
  6079.    In the put routines, VAL must be a `bfd_vma'.  If we are on a system
  6080. without prototypes, the caller is responsible for making sure that is
  6081. true, with a cast if necessary.  We don't cast them in the macro
  6082. definitions because that would prevent `lint' or `gcc -Wall' from
  6083. detecting sins such as passing a pointer.  To detect calling these with
  6084. less than a `bfd_vma', use `gcc -Wconversion' on a host with 64 bit
  6085. `bfd_vma''s.
  6086.  
  6087.      /* Byte swapping macros for user section data.  */
  6088.  
  6089.      #define bfd_put_8(abfd, val, ptr) \
  6090.        ((void) (*((unsigned char *) (ptr)) = (val) & 0xff))
  6091.      #define bfd_put_signed_8 \
  6092.        bfd_put_8
  6093.      #define bfd_get_8(abfd, ptr) \
  6094.        (*(unsigned char *) (ptr) & 0xff)
  6095.      #define bfd_get_signed_8(abfd, ptr) \
  6096.        (((*(unsigned char *) (ptr) & 0xff) ^ 0x80) - 0x80)
  6097.  
  6098.      #define bfd_put_16(abfd, val, ptr) \
  6099.        BFD_SEND (abfd, bfd_putx16, ((val),(ptr)))
  6100.      #define bfd_put_signed_16 \
  6101.        bfd_put_16
  6102.      #define bfd_get_16(abfd, ptr) \
  6103.        BFD_SEND (abfd, bfd_getx16, (ptr))
  6104.      #define bfd_get_signed_16(abfd, ptr) \
  6105.        BFD_SEND (abfd, bfd_getx_signed_16, (ptr))
  6106.  
  6107.      #define bfd_put_32(abfd, val, ptr) \
  6108.        BFD_SEND (abfd, bfd_putx32, ((val),(ptr)))
  6109.      #define bfd_put_signed_32 \
  6110.        bfd_put_32
  6111.      #define bfd_get_32(abfd, ptr) \
  6112.        BFD_SEND (abfd, bfd_getx32, (ptr))
  6113.      #define bfd_get_signed_32(abfd, ptr) \
  6114.        BFD_SEND (abfd, bfd_getx_signed_32, (ptr))
  6115.  
  6116.      #define bfd_put_64(abfd, val, ptr) \
  6117.        BFD_SEND (abfd, bfd_putx64, ((val), (ptr)))
  6118.      #define bfd_put_signed_64 \
  6119.        bfd_put_64
  6120.      #define bfd_get_64(abfd, ptr) \
  6121.        BFD_SEND (abfd, bfd_getx64, (ptr))
  6122.      #define bfd_get_signed_64(abfd, ptr) \
  6123.        BFD_SEND (abfd, bfd_getx_signed_64, (ptr))
  6124.  
  6125.      #define bfd_get(bits, abfd, ptr)                       \
  6126.        ((bits) == 8 ? (bfd_vma) bfd_get_8 (abfd, ptr)       \
  6127.         : (bits) == 16 ? bfd_get_16 (abfd, ptr)             \
  6128.         : (bits) == 32 ? bfd_get_32 (abfd, ptr)             \
  6129.         : (bits) == 64 ? bfd_get_64 (abfd, ptr)             \
  6130.         : (abort (), (bfd_vma) - 1))
  6131.  
  6132.      #define bfd_put(bits, abfd, val, ptr)                  \
  6133.        ((bits) == 8 ? bfd_put_8  (abfd, val, ptr)           \
  6134.         : (bits) == 16 ? bfd_put_16 (abfd, val, ptr)                \
  6135.         : (bits) == 32 ? bfd_put_32 (abfd, val, ptr)                \
  6136.         : (bits) == 64 ? bfd_put_64 (abfd, val, ptr)                \
  6137.         : (abort (), (void) 0))
  6138.  
  6139. 2.16.0.4 `bfd_h_put_size'
  6140. .........................
  6141.  
  6142. *Description*
  6143. These macros have the same function as their `bfd_get_x' brethren,
  6144. except that they are used for removing information for the header
  6145. records of object files. Believe it or not, some object files keep
  6146. their header records in big endian order and their data in little
  6147. endian order.
  6148.  
  6149.      /* Byte swapping macros for file header data.  */
  6150.  
  6151.      #define bfd_h_put_8(abfd, val, ptr) \
  6152.        bfd_put_8 (abfd, val, ptr)
  6153.      #define bfd_h_put_signed_8(abfd, val, ptr) \
  6154.        bfd_put_8 (abfd, val, ptr)
  6155.      #define bfd_h_get_8(abfd, ptr) \
  6156.        bfd_get_8 (abfd, ptr)
  6157.      #define bfd_h_get_signed_8(abfd, ptr) \
  6158.        bfd_get_signed_8 (abfd, ptr)
  6159.  
  6160.      #define bfd_h_put_16(abfd, val, ptr) \
  6161.        BFD_SEND (abfd, bfd_h_putx16, (val, ptr))
  6162.      #define bfd_h_put_signed_16 \
  6163.        bfd_h_put_16
  6164.      #define bfd_h_get_16(abfd, ptr) \
  6165.        BFD_SEND (abfd, bfd_h_getx16, (ptr))
  6166.      #define bfd_h_get_signed_16(abfd, ptr) \
  6167.        BFD_SEND (abfd, bfd_h_getx_signed_16, (ptr))
  6168.  
  6169.      #define bfd_h_put_32(abfd, val, ptr) \
  6170.        BFD_SEND (abfd, bfd_h_putx32, (val, ptr))
  6171.      #define bfd_h_put_signed_32 \
  6172.        bfd_h_put_32
  6173.      #define bfd_h_get_32(abfd, ptr) \
  6174.        BFD_SEND (abfd, bfd_h_getx32, (ptr))
  6175.      #define bfd_h_get_signed_32(abfd, ptr) \
  6176.        BFD_SEND (abfd, bfd_h_getx_signed_32, (ptr))
  6177.  
  6178.      #define bfd_h_put_64(abfd, val, ptr) \
  6179.        BFD_SEND (abfd, bfd_h_putx64, (val, ptr))
  6180.      #define bfd_h_put_signed_64 \
  6181.        bfd_h_put_64
  6182.      #define bfd_h_get_64(abfd, ptr) \
  6183.        BFD_SEND (abfd, bfd_h_getx64, (ptr))
  6184.      #define bfd_h_get_signed_64(abfd, ptr) \
  6185.        BFD_SEND (abfd, bfd_h_getx_signed_64, (ptr))
  6186.  
  6187.      /* Aliases for the above, which should eventually go away.  */
  6188.  
  6189.      #define H_PUT_64  bfd_h_put_64
  6190.      #define H_PUT_32  bfd_h_put_32
  6191.      #define H_PUT_16  bfd_h_put_16
  6192.      #define H_PUT_8   bfd_h_put_8
  6193.      #define H_PUT_S64 bfd_h_put_signed_64
  6194.      #define H_PUT_S32 bfd_h_put_signed_32
  6195.      #define H_PUT_S16 bfd_h_put_signed_16
  6196.      #define H_PUT_S8  bfd_h_put_signed_8
  6197.      #define H_GET_64  bfd_h_get_64
  6198.      #define H_GET_32  bfd_h_get_32
  6199.      #define H_GET_16  bfd_h_get_16
  6200.      #define H_GET_8   bfd_h_get_8
  6201.      #define H_GET_S64 bfd_h_get_signed_64
  6202.      #define H_GET_S32 bfd_h_get_signed_32
  6203.      #define H_GET_S16 bfd_h_get_signed_16
  6204.      #define H_GET_S8  bfd_h_get_signed_8
  6205.  
  6206. 2.16.0.5 `bfd_log2'
  6207. ...................
  6208.  
  6209. *Synopsis*
  6210.      unsigned int bfd_log2 (bfd_vma x);
  6211.    *Description*
  6212. Return the log base 2 of the value supplied, rounded up.  E.g., an X of
  6213. 1025 returns 11.  A X of 0 returns 0.
  6214.  
  6215. 
  6216. File: bfd.info,  Node: File Caching,  Next: Linker Functions,  Prev: Internal,  Up: BFD front end
  6217.  
  6218. 2.17 File caching
  6219. =================
  6220.  
  6221. The file caching mechanism is embedded within BFD and allows the
  6222. application to open as many BFDs as it wants without regard to the
  6223. underlying operating system's file descriptor limit (often as low as 20
  6224. open files).  The module in `cache.c' maintains a least recently used
  6225. list of `BFD_CACHE_MAX_OPEN' files, and exports the name
  6226. `bfd_cache_lookup', which runs around and makes sure that the required
  6227. BFD is open. If not, then it chooses a file to close, closes it and
  6228. opens the one wanted, returning its file handle.
  6229.  
  6230. 2.17.0.1 `BFD_CACHE_MAX_OPEN macro'
  6231. ...................................
  6232.  
  6233. *Description*
  6234. The maximum number of files which the cache will keep open at one time.
  6235.      #define BFD_CACHE_MAX_OPEN 10
  6236.  
  6237. 2.17.0.2 `bfd_last_cache'
  6238. .........................
  6239.  
  6240. *Synopsis*
  6241.      extern bfd *bfd_last_cache;
  6242.    *Description*
  6243. Zero, or a pointer to the topmost BFD on the chain.  This is used by
  6244. the `bfd_cache_lookup' macro in `libbfd.h' to determine when it can
  6245. avoid a function call.
  6246.  
  6247. 2.17.0.3 `bfd_cache_lookup'
  6248. ...........................
  6249.  
  6250. *Description*
  6251. Check to see if the required BFD is the same as the last one looked up.
  6252. If so, then it can use the stream in the BFD with impunity, since it
  6253. can't have changed since the last lookup; otherwise, it has to perform
  6254. the complicated lookup function.
  6255.      #define bfd_cache_lookup(x) \
  6256.          ((x) == bfd_last_cache ? \
  6257.            (FILE *) (bfd_last_cache->iostream): \
  6258.             bfd_cache_lookup_worker (x))
  6259.  
  6260. 2.17.0.4 `bfd_cache_init'
  6261. .........................
  6262.  
  6263. *Synopsis*
  6264.      bfd_boolean bfd_cache_init (bfd *abfd);
  6265.    *Description*
  6266. Add a newly opened BFD to the cache.
  6267.  
  6268. 2.17.0.5 `bfd_cache_close'
  6269. ..........................
  6270.  
  6271. *Synopsis*
  6272.      bfd_boolean bfd_cache_close (bfd *abfd);
  6273.    *Description*
  6274. Remove the BFD ABFD from the cache. If the attached file is open, then
  6275. close it too.
  6276.  
  6277.    *Returns*
  6278. `FALSE' is returned if closing the file fails, `TRUE' is returned if
  6279. all is well.
  6280.  
  6281. 2.17.0.6 `bfd_cache_close_all'
  6282. ..............................
  6283.  
  6284. *Synopsis*
  6285.      bfd_boolean bfd_cache_close_all (void);
  6286.    *Description*
  6287. Remove all BFDs from the cache. If the attached file is open, then
  6288. close it too.
  6289.  
  6290.    *Returns*
  6291. `FALSE' is returned if closing one of the file fails, `TRUE' is
  6292. returned if all is well.
  6293.  
  6294. 2.17.0.7 `bfd_open_file'
  6295. ........................
  6296.  
  6297. *Synopsis*
  6298.      FILE* bfd_open_file (bfd *abfd);
  6299.    *Description*
  6300. Call the OS to open a file for ABFD.  Return the `FILE *' (possibly
  6301. `NULL') that results from this operation.  Set up the BFD so that
  6302. future accesses know the file is open. If the `FILE *' returned is
  6303. `NULL', then it won't have been put in the cache, so it won't have to
  6304. be removed from it.
  6305.  
  6306. 2.17.0.8 `bfd_cache_lookup_worker'
  6307. ..................................
  6308.  
  6309. *Synopsis*
  6310.      FILE *bfd_cache_lookup_worker (bfd *abfd);
  6311.    *Description*
  6312. Called when the macro `bfd_cache_lookup' fails to find a quick answer.
  6313. Find a file descriptor for ABFD.  If necessary, it open it.  If there
  6314. are already more than `BFD_CACHE_MAX_OPEN' files open, it tries to
  6315. close one first, to avoid running out of file descriptors.  It will
  6316. abort rather than returning NULL if it is unable to (re)open the ABFD.
  6317.  
  6318. 
  6319. File: bfd.info,  Node: Linker Functions,  Next: Hash Tables,  Prev: File Caching,  Up: BFD front end
  6320.  
  6321. 2.18 Linker Functions
  6322. =====================
  6323.  
  6324. The linker uses three special entry points in the BFD target vector.
  6325. It is not necessary to write special routines for these entry points
  6326. when creating a new BFD back end, since generic versions are provided.
  6327. However, writing them can speed up linking and make it use
  6328. significantly less runtime memory.
  6329.  
  6330.    The first routine creates a hash table used by the other routines.
  6331. The second routine adds the symbols from an object file to the hash
  6332. table.  The third routine takes all the object files and links them
  6333. together to create the output file.  These routines are designed so
  6334. that the linker proper does not need to know anything about the symbols
  6335. in the object files that it is linking.  The linker merely arranges the
  6336. sections as directed by the linker script and lets BFD handle the
  6337. details of symbols and relocs.
  6338.  
  6339.    The second routine and third routines are passed a pointer to a
  6340. `struct bfd_link_info' structure (defined in `bfdlink.h') which holds
  6341. information relevant to the link, including the linker hash table
  6342. (which was created by the first routine) and a set of callback
  6343. functions to the linker proper.
  6344.  
  6345.    The generic linker routines are in `linker.c', and use the header
  6346. file `genlink.h'.  As of this writing, the only back ends which have
  6347. implemented versions of these routines are a.out (in `aoutx.h') and
  6348. ECOFF (in `ecoff.c').  The a.out routines are used as examples
  6349. throughout this section.
  6350.  
  6351. * Menu:
  6352.  
  6353. * Creating a Linker Hash Table::
  6354. * Adding Symbols to the Hash Table::
  6355. * Performing the Final Link::
  6356.  
  6357. 
  6358. File: bfd.info,  Node: Creating a Linker Hash Table,  Next: Adding Symbols to the Hash Table,  Prev: Linker Functions,  Up: Linker Functions
  6359.  
  6360. 2.18.1 Creating a linker hash table
  6361. -----------------------------------
  6362.  
  6363. The linker routines must create a hash table, which must be derived
  6364. from `struct bfd_link_hash_table' described in `bfdlink.c'.  *Note Hash
  6365. Tables::, for information on how to create a derived hash table.  This
  6366. entry point is called using the target vector of the linker output file.
  6367.  
  6368.    The `_bfd_link_hash_table_create' entry point must allocate and
  6369. initialize an instance of the desired hash table.  If the back end does
  6370. not require any additional information to be stored with the entries in
  6371. the hash table, the entry point may simply create a `struct
  6372. bfd_link_hash_table'.  Most likely, however, some additional
  6373. information will be needed.
  6374.  
  6375.    For example, with each entry in the hash table the a.out linker
  6376. keeps the index the symbol has in the final output file (this index
  6377. number is used so that when doing a relocatable link the symbol index
  6378. used in the output file can be quickly filled in when copying over a
  6379. reloc).  The a.out linker code defines the required structures and
  6380. functions for a hash table derived from `struct bfd_link_hash_table'.
  6381. The a.out linker hash table is created by the function
  6382. `NAME(aout,link_hash_table_create)'; it simply allocates space for the
  6383. hash table, initializes it, and returns a pointer to it.
  6384.  
  6385.    When writing the linker routines for a new back end, you will
  6386. generally not know exactly which fields will be required until you have
  6387. finished.  You should simply create a new hash table which defines no
  6388. additional fields, and then simply add fields as they become necessary.
  6389.  
  6390. 
  6391. File: bfd.info,  Node: Adding Symbols to the Hash Table,  Next: Performing the Final Link,  Prev: Creating a Linker Hash Table,  Up: Linker Functions
  6392.  
  6393. 2.18.2 Adding symbols to the hash table
  6394. ---------------------------------------
  6395.  
  6396. The linker proper will call the `_bfd_link_add_symbols' entry point for
  6397. each object file or archive which is to be linked (typically these are
  6398. the files named on the command line, but some may also come from the
  6399. linker script).  The entry point is responsible for examining the file.
  6400. For an object file, BFD must add any relevant symbol information to
  6401. the hash table.  For an archive, BFD must determine which elements of
  6402. the archive should be used and adding them to the link.
  6403.  
  6404.    The a.out version of this entry point is
  6405. `NAME(aout,link_add_symbols)'.
  6406.  
  6407. * Menu:
  6408.  
  6409. * Differing file formats::
  6410. * Adding symbols from an object file::
  6411. * Adding symbols from an archive::
  6412.  
  6413. 
  6414. File: bfd.info,  Node: Differing file formats,  Next: Adding symbols from an object file,  Prev: Adding Symbols to the Hash Table,  Up: Adding Symbols to the Hash Table
  6415.  
  6416. 2.18.2.1 Differing file formats
  6417. ...............................
  6418.  
  6419. Normally all the files involved in a link will be of the same format,
  6420. but it is also possible to link together different format object files,
  6421. and the back end must support that.  The `_bfd_link_add_symbols' entry
  6422. point is called via the target vector of the file to be added.  This
  6423. has an important consequence: the function may not assume that the hash
  6424. table is the type created by the corresponding
  6425. `_bfd_link_hash_table_create' vector.  All the `_bfd_link_add_symbols'
  6426. function can assume about the hash table is that it is derived from
  6427. `struct bfd_link_hash_table'.
  6428.  
  6429.    Sometimes the `_bfd_link_add_symbols' function must store some
  6430. information in the hash table entry to be used by the `_bfd_final_link'
  6431. function.  In such a case the `creator' field of the hash table must be
  6432. checked to make sure that the hash table was created by an object file
  6433. of the same format.
  6434.  
  6435.    The `_bfd_final_link' routine must be prepared to handle a hash
  6436. entry without any extra information added by the
  6437. `_bfd_link_add_symbols' function.  A hash entry without extra
  6438. information will also occur when the linker script directs the linker
  6439. to create a symbol.  Note that, regardless of how a hash table entry is
  6440. added, all the fields will be initialized to some sort of null value by
  6441. the hash table entry initialization function.
  6442.  
  6443.    See `ecoff_link_add_externals' for an example of how to check the
  6444. `creator' field before saving information (in this case, the ECOFF
  6445. external symbol debugging information) in a hash table entry.
  6446.  
  6447. 
  6448. File: bfd.info,  Node: Adding symbols from an object file,  Next: Adding symbols from an archive,  Prev: Differing file formats,  Up: Adding Symbols to the Hash Table
  6449.  
  6450. 2.18.2.2 Adding symbols from an object file
  6451. ...........................................
  6452.  
  6453. When the `_bfd_link_add_symbols' routine is passed an object file, it
  6454. must add all externally visible symbols in that object file to the hash
  6455. table.  The actual work of adding the symbol to the hash table is
  6456. normally handled by the function `_bfd_generic_link_add_one_symbol'.
  6457. The `_bfd_link_add_symbols' routine is responsible for reading all the
  6458. symbols from the object file and passing the correct information to
  6459. `_bfd_generic_link_add_one_symbol'.
  6460.  
  6461.    The `_bfd_link_add_symbols' routine should not use
  6462. `bfd_canonicalize_symtab' to read the symbols.  The point of providing
  6463. this routine is to avoid the overhead of converting the symbols into
  6464. generic `asymbol' structures.
  6465.  
  6466.    `_bfd_generic_link_add_one_symbol' handles the details of combining
  6467. common symbols, warning about multiple definitions, and so forth.  It
  6468. takes arguments which describe the symbol to add, notably symbol flags,
  6469. a section, and an offset.  The symbol flags include such things as
  6470. `BSF_WEAK' or `BSF_INDIRECT'.  The section is a section in the object
  6471. file, or something like `bfd_und_section_ptr' for an undefined symbol
  6472. or `bfd_com_section_ptr' for a common symbol.
  6473.  
  6474.    If the `_bfd_final_link' routine is also going to need to read the
  6475. symbol information, the `_bfd_link_add_symbols' routine should save it
  6476. somewhere attached to the object file BFD.  However, the information
  6477. should only be saved if the `keep_memory' field of the `info' argument
  6478. is TRUE, so that the `-no-keep-memory' linker switch is effective.
  6479.  
  6480.    The a.out function which adds symbols from an object file is
  6481. `aout_link_add_object_symbols', and most of the interesting work is in
  6482. `aout_link_add_symbols'.  The latter saves pointers to the hash tables
  6483. entries created by `_bfd_generic_link_add_one_symbol' indexed by symbol
  6484. number, so that the `_bfd_final_link' routine does not have to call the
  6485. hash table lookup routine to locate the entry.
  6486.  
  6487. 
  6488. File: bfd.info,  Node: Adding symbols from an archive,  Prev: Adding symbols from an object file,  Up: Adding Symbols to the Hash Table
  6489.  
  6490. 2.18.2.3 Adding symbols from an archive
  6491. .......................................
  6492.  
  6493. When the `_bfd_link_add_symbols' routine is passed an archive, it must
  6494. look through the symbols defined by the archive and decide which
  6495. elements of the archive should be included in the link.  For each such
  6496. element it must call the `add_archive_element' linker callback, and it
  6497. must add the symbols from the object file to the linker hash table.
  6498.  
  6499.    In most cases the work of looking through the symbols in the archive
  6500. should be done by the `_bfd_generic_link_add_archive_symbols' function.
  6501. This function builds a hash table from the archive symbol table and
  6502. looks through the list of undefined symbols to see which elements
  6503. should be included.  `_bfd_generic_link_add_archive_symbols' is passed
  6504. a function to call to make the final decision about adding an archive
  6505. element to the link and to do the actual work of adding the symbols to
  6506. the linker hash table.
  6507.  
  6508.    The function passed to `_bfd_generic_link_add_archive_symbols' must
  6509. read the symbols of the archive element and decide whether the archive
  6510. element should be included in the link.  If the element is to be
  6511. included, the `add_archive_element' linker callback routine must be
  6512. called with the element as an argument, and the elements symbols must
  6513. be added to the linker hash table just as though the element had itself
  6514. been passed to the `_bfd_link_add_symbols' function.
  6515.  
  6516.    When the a.out `_bfd_link_add_symbols' function receives an archive,
  6517. it calls `_bfd_generic_link_add_archive_symbols' passing
  6518. `aout_link_check_archive_element' as the function argument.
  6519. `aout_link_check_archive_element' calls `aout_link_check_ar_symbols'.
  6520. If the latter decides to add the element (an element is only added if
  6521. it provides a real, non-common, definition for a previously undefined
  6522. or common symbol) it calls the `add_archive_element' callback and then
  6523. `aout_link_check_archive_element' calls `aout_link_add_symbols' to
  6524. actually add the symbols to the linker hash table.
  6525.  
  6526.    The ECOFF back end is unusual in that it does not normally call
  6527. `_bfd_generic_link_add_archive_symbols', because ECOFF archives already
  6528. contain a hash table of symbols.  The ECOFF back end searches the
  6529. archive itself to avoid the overhead of creating a new hash table.
  6530.  
  6531. 
  6532. File: bfd.info,  Node: Performing the Final Link,  Prev: Adding Symbols to the Hash Table,  Up: Linker Functions
  6533.  
  6534. 2.18.3 Performing the final link
  6535. --------------------------------
  6536.  
  6537. When all the input files have been processed, the linker calls the
  6538. `_bfd_final_link' entry point of the output BFD.  This routine is
  6539. responsible for producing the final output file, which has several
  6540. aspects.  It must relocate the contents of the input sections and copy
  6541. the data into the output sections.  It must build an output symbol
  6542. table including any local symbols from the input files and the global
  6543. symbols from the hash table.  When producing relocatable output, it must
  6544. modify the input relocs and write them into the output file.  There may
  6545. also be object format dependent work to be done.
  6546.  
  6547.    The linker will also call the `write_object_contents' entry point
  6548. when the BFD is closed.  The two entry points must work together in
  6549. order to produce the correct output file.
  6550.  
  6551.    The details of how this works are inevitably dependent upon the
  6552. specific object file format.  The a.out `_bfd_final_link' routine is
  6553. `NAME(aout,final_link)'.
  6554.  
  6555. * Menu:
  6556.  
  6557. * Information provided by the linker::
  6558. * Relocating the section contents::
  6559. * Writing the symbol table::
  6560.  
  6561. 
  6562. File: bfd.info,  Node: Information provided by the linker,  Next: Relocating the section contents,  Prev: Performing the Final Link,  Up: Performing the Final Link
  6563.  
  6564. 2.18.3.1 Information provided by the linker
  6565. ...........................................
  6566.  
  6567. Before the linker calls the `_bfd_final_link' entry point, it sets up
  6568. some data structures for the function to use.
  6569.  
  6570.    The `input_bfds' field of the `bfd_link_info' structure will point
  6571. to a list of all the input files included in the link.  These files are
  6572. linked through the `link_next' field of the `bfd' structure.
  6573.  
  6574.    Each section in the output file will have a list of `link_order'
  6575. structures attached to the `link_order_head' field (the `link_order'
  6576. structure is defined in `bfdlink.h').  These structures describe how to
  6577. create the contents of the output section in terms of the contents of
  6578. various input sections, fill constants, and, eventually, other types of
  6579. information.  They also describe relocs that must be created by the BFD
  6580. backend, but do not correspond to any input file; this is used to
  6581. support -Ur, which builds constructors while generating a relocatable
  6582. object file.
  6583.  
  6584. 
  6585. File: bfd.info,  Node: Relocating the section contents,  Next: Writing the symbol table,  Prev: Information provided by the linker,  Up: Performing the Final Link
  6586.  
  6587. 2.18.3.2 Relocating the section contents
  6588. ........................................
  6589.  
  6590. The `_bfd_final_link' function should look through the `link_order'
  6591. structures attached to each section of the output file.  Each
  6592. `link_order' structure should either be handled specially, or it should
  6593. be passed to the function `_bfd_default_link_order' which will do the
  6594. right thing (`_bfd_default_link_order' is defined in `linker.c').
  6595.  
  6596.    For efficiency, a `link_order' of type `bfd_indirect_link_order'
  6597. whose associated section belongs to a BFD of the same format as the
  6598. output BFD must be handled specially.  This type of `link_order'
  6599. describes part of an output section in terms of a section belonging to
  6600. one of the input files.  The `_bfd_final_link' function should read the
  6601. contents of the section and any associated relocs, apply the relocs to
  6602. the section contents, and write out the modified section contents.  If
  6603. performing a relocatable link, the relocs themselves must also be
  6604. modified and written out.
  6605.  
  6606.    The functions `_bfd_relocate_contents' and
  6607. `_bfd_final_link_relocate' provide some general support for performing
  6608. the actual relocations, notably overflow checking.  Their arguments
  6609. include information about the symbol the relocation is against and a
  6610. `reloc_howto_type' argument which describes the relocation to perform.
  6611. These functions are defined in `reloc.c'.
  6612.  
  6613.    The a.out function which handles reading, relocating, and writing
  6614. section contents is `aout_link_input_section'.  The actual relocation
  6615. is done in `aout_link_input_section_std' and
  6616. `aout_link_input_section_ext'.
  6617.  
  6618. 
  6619. File: bfd.info,  Node: Writing the symbol table,  Prev: Relocating the section contents,  Up: Performing the Final Link
  6620.  
  6621. 2.18.3.3 Writing the symbol table
  6622. .................................
  6623.  
  6624. The `_bfd_final_link' function must gather all the symbols in the input
  6625. files and write them out.  It must also write out all the symbols in
  6626. the global hash table.  This must be controlled by the `strip' and
  6627. `discard' fields of the `bfd_link_info' structure.
  6628.  
  6629.    The local symbols of the input files will not have been entered into
  6630. the linker hash table.  The `_bfd_final_link' routine must consider
  6631. each input file and include the symbols in the output file.  It may be
  6632. convenient to do this when looking through the `link_order' structures,
  6633. or it may be done by stepping through the `input_bfds' list.
  6634.  
  6635.    The `_bfd_final_link' routine must also traverse the global hash
  6636. table to gather all the externally visible symbols.  It is possible
  6637. that most of the externally visible symbols may be written out when
  6638. considering the symbols of each input file, but it is still necessary
  6639. to traverse the hash table since the linker script may have defined
  6640. some symbols that are not in any of the input files.
  6641.  
  6642.    The `strip' field of the `bfd_link_info' structure controls which
  6643. symbols are written out.  The possible values are listed in
  6644. `bfdlink.h'.  If the value is `strip_some', then the `keep_hash' field
  6645. of the `bfd_link_info' structure is a hash table of symbols to keep;
  6646. each symbol should be looked up in this hash table, and only symbols
  6647. which are present should be included in the output file.
  6648.  
  6649.    If the `strip' field of the `bfd_link_info' structure permits local
  6650. symbols to be written out, the `discard' field is used to further
  6651. controls which local symbols are included in the output file.  If the
  6652. value is `discard_l', then all local symbols which begin with a certain
  6653. prefix are discarded; this is controlled by the
  6654. `bfd_is_local_label_name' entry point.
  6655.  
  6656.    The a.out backend handles symbols by calling
  6657. `aout_link_write_symbols' on each input BFD and then traversing the
  6658. global hash table with the function `aout_link_write_other_symbol'.  It
  6659. builds a string table while writing out the symbols, which is written
  6660. to the output file at the end of `NAME(aout,final_link)'.
  6661.  
  6662. 2.18.3.4 `bfd_link_split_section'
  6663. .................................
  6664.  
  6665. *Synopsis*
  6666.      bfd_boolean bfd_link_split_section (bfd *abfd, asection *sec);
  6667.    *Description*
  6668. Return nonzero if SEC should be split during a reloceatable or final
  6669. link.
  6670.      #define bfd_link_split_section(abfd, sec) \
  6671.             BFD_SEND (abfd, _bfd_link_split_section, (abfd, sec))
  6672.  
  6673. 2.18.3.5 `bfd_section_already_linked'
  6674. .....................................
  6675.  
  6676. *Synopsis*
  6677.      void bfd_section_already_linked (bfd *abfd, asection *sec);
  6678.    *Description*
  6679. Check if SEC has been already linked during a reloceatable or final
  6680. link.
  6681.      #define bfd_section_already_linked(abfd, sec) \
  6682.             BFD_SEND (abfd, _section_already_linked, (abfd, sec))
  6683.  
  6684. 
  6685. File: bfd.info,  Node: Hash Tables,  Prev: Linker Functions,  Up: BFD front end
  6686.  
  6687. 2.19 Hash Tables
  6688. ================
  6689.  
  6690. BFD provides a simple set of hash table functions.  Routines are
  6691. provided to initialize a hash table, to free a hash table, to look up a
  6692. string in a hash table and optionally create an entry for it, and to
  6693. traverse a hash table.  There is currently no routine to delete an
  6694. string from a hash table.
  6695.  
  6696.    The basic hash table does not permit any data to be stored with a
  6697. string.  However, a hash table is designed to present a base class from
  6698. which other types of hash tables may be derived.  These derived types
  6699. may store additional information with the string.  Hash tables were
  6700. implemented in this way, rather than simply providing a data pointer in
  6701. a hash table entry, because they were designed for use by the linker
  6702. back ends.  The linker may create thousands of hash table entries, and
  6703. the overhead of allocating private data and storing and following
  6704. pointers becomes noticeable.
  6705.  
  6706.    The basic hash table code is in `hash.c'.
  6707.  
  6708. * Menu:
  6709.  
  6710. * Creating and Freeing a Hash Table::
  6711. * Looking Up or Entering a String::
  6712. * Traversing a Hash Table::
  6713. * Deriving a New Hash Table Type::
  6714.  
  6715. 
  6716. File: bfd.info,  Node: Creating and Freeing a Hash Table,  Next: Looking Up or Entering a String,  Prev: Hash Tables,  Up: Hash Tables
  6717.  
  6718. 2.19.1 Creating and freeing a hash table
  6719. ----------------------------------------
  6720.  
  6721. To create a hash table, create an instance of a `struct bfd_hash_table'
  6722. (defined in `bfd.h') and call `bfd_hash_table_init' (if you know
  6723. approximately how many entries you will need, the function
  6724. `bfd_hash_table_init_n', which takes a SIZE argument, may be used).
  6725. `bfd_hash_table_init' returns `FALSE' if some sort of error occurs.
  6726.  
  6727.    The function `bfd_hash_table_init' take as an argument a function to
  6728. use to create new entries.  For a basic hash table, use the function
  6729. `bfd_hash_newfunc'.  *Note Deriving a New Hash Table Type::, for why
  6730. you would want to use a different value for this argument.
  6731.  
  6732.    `bfd_hash_table_init' will create an objalloc which will be used to
  6733. allocate new entries.  You may allocate memory on this objalloc using
  6734. `bfd_hash_allocate'.
  6735.  
  6736.    Use `bfd_hash_table_free' to free up all the memory that has been
  6737. allocated for a hash table.  This will not free up the `struct
  6738. bfd_hash_table' itself, which you must provide.
  6739.  
  6740.    Use `bfd_hash_set_default_size' to set the default size of hash
  6741. table to use.
  6742.  
  6743. 
  6744. File: bfd.info,  Node: Looking Up or Entering a String,  Next: Traversing a Hash Table,  Prev: Creating and Freeing a Hash Table,  Up: Hash Tables
  6745.  
  6746. 2.19.2 Looking up or entering a string
  6747. --------------------------------------
  6748.  
  6749. The function `bfd_hash_lookup' is used both to look up a string in the
  6750. hash table and to create a new entry.
  6751.  
  6752.    If the CREATE argument is `FALSE', `bfd_hash_lookup' will look up a
  6753. string.  If the string is found, it will returns a pointer to a `struct
  6754. bfd_hash_entry'.  If the string is not found in the table
  6755. `bfd_hash_lookup' will return `NULL'.  You should not modify any of the
  6756. fields in the returns `struct bfd_hash_entry'.
  6757.  
  6758.    If the CREATE argument is `TRUE', the string will be entered into
  6759. the hash table if it is not already there.  Either way a pointer to a
  6760. `struct bfd_hash_entry' will be returned, either to the existing
  6761. structure or to a newly created one.  In this case, a `NULL' return
  6762. means that an error occurred.
  6763.  
  6764.    If the CREATE argument is `TRUE', and a new entry is created, the
  6765. COPY argument is used to decide whether to copy the string onto the
  6766. hash table objalloc or not.  If COPY is passed as `FALSE', you must be
  6767. careful not to deallocate or modify the string as long as the hash table
  6768. exists.
  6769.  
  6770. 
  6771. File: bfd.info,  Node: Traversing a Hash Table,  Next: Deriving a New Hash Table Type,  Prev: Looking Up or Entering a String,  Up: Hash Tables
  6772.  
  6773. 2.19.3 Traversing a hash table
  6774. ------------------------------
  6775.  
  6776. The function `bfd_hash_traverse' may be used to traverse a hash table,
  6777. calling a function on each element.  The traversal is done in a random
  6778. order.
  6779.  
  6780.    `bfd_hash_traverse' takes as arguments a function and a generic
  6781. `void *' pointer.  The function is called with a hash table entry (a
  6782. `struct bfd_hash_entry *') and the generic pointer passed to
  6783. `bfd_hash_traverse'.  The function must return a `boolean' value, which
  6784. indicates whether to continue traversing the hash table.  If the
  6785. function returns `FALSE', `bfd_hash_traverse' will stop the traversal
  6786. and return immediately.
  6787.  
  6788. 
  6789. File: bfd.info,  Node: Deriving a New Hash Table Type,  Prev: Traversing a Hash Table,  Up: Hash Tables
  6790.  
  6791. 2.19.4 Deriving a new hash table type
  6792. -------------------------------------
  6793.  
  6794. Many uses of hash tables want to store additional information which
  6795. each entry in the hash table.  Some also find it convenient to store
  6796. additional information with the hash table itself.  This may be done
  6797. using a derived hash table.
  6798.  
  6799.    Since C is not an object oriented language, creating a derived hash
  6800. table requires sticking together some boilerplate routines with a few
  6801. differences specific to the type of hash table you want to create.
  6802.  
  6803.    An example of a derived hash table is the linker hash table.  The
  6804. structures for this are defined in `bfdlink.h'.  The functions are in
  6805. `linker.c'.
  6806.  
  6807.    You may also derive a hash table from an already derived hash table.
  6808. For example, the a.out linker backend code uses a hash table derived
  6809. from the linker hash table.
  6810.  
  6811. * Menu:
  6812.  
  6813. * Define the Derived Structures::
  6814. * Write the Derived Creation Routine::
  6815. * Write Other Derived Routines::
  6816.  
  6817. 
  6818. File: bfd.info,  Node: Define the Derived Structures,  Next: Write the Derived Creation Routine,  Prev: Deriving a New Hash Table Type,  Up: Deriving a New Hash Table Type
  6819.  
  6820. 2.19.4.1 Define the derived structures
  6821. ......................................
  6822.  
  6823. You must define a structure for an entry in the hash table, and a
  6824. structure for the hash table itself.
  6825.  
  6826.    The first field in the structure for an entry in the hash table must
  6827. be of the type used for an entry in the hash table you are deriving
  6828. from.  If you are deriving from a basic hash table this is `struct
  6829. bfd_hash_entry', which is defined in `bfd.h'.  The first field in the
  6830. structure for the hash table itself must be of the type of the hash
  6831. table you are deriving from itself.  If you are deriving from a basic
  6832. hash table, this is `struct bfd_hash_table'.
  6833.  
  6834.    For example, the linker hash table defines `struct
  6835. bfd_link_hash_entry' (in `bfdlink.h').  The first field, `root', is of
  6836. type `struct bfd_hash_entry'.  Similarly, the first field in `struct
  6837. bfd_link_hash_table', `table', is of type `struct bfd_hash_table'.
  6838.  
  6839. 
  6840. File: bfd.info,  Node: Write the Derived Creation Routine,  Next: Write Other Derived Routines,  Prev: Define the Derived Structures,  Up: Deriving a New Hash Table Type
  6841.  
  6842. 2.19.4.2 Write the derived creation routine
  6843. ...........................................
  6844.  
  6845. You must write a routine which will create and initialize an entry in
  6846. the hash table.  This routine is passed as the function argument to
  6847. `bfd_hash_table_init'.
  6848.  
  6849.    In order to permit other hash tables to be derived from the hash
  6850. table you are creating, this routine must be written in a standard way.
  6851.  
  6852.    The first argument to the creation routine is a pointer to a hash
  6853. table entry.  This may be `NULL', in which case the routine should
  6854. allocate the right amount of space.  Otherwise the space has already
  6855. been allocated by a hash table type derived from this one.
  6856.  
  6857.    After allocating space, the creation routine must call the creation
  6858. routine of the hash table type it is derived from, passing in a pointer
  6859. to the space it just allocated.  This will initialize any fields used
  6860. by the base hash table.
  6861.  
  6862.    Finally the creation routine must initialize any local fields for
  6863. the new hash table type.
  6864.  
  6865.    Here is a boilerplate example of a creation routine.  FUNCTION_NAME
  6866. is the name of the routine.  ENTRY_TYPE is the type of an entry in the
  6867. hash table you are creating.  BASE_NEWFUNC is the name of the creation
  6868. routine of the hash table type your hash table is derived from.
  6869.  
  6870.      struct bfd_hash_entry *
  6871.      FUNCTION_NAME (entry, table, string)
  6872.           struct bfd_hash_entry *entry;
  6873.           struct bfd_hash_table *table;
  6874.           const char *string;
  6875.      {
  6876.        struct ENTRY_TYPE *ret = (ENTRY_TYPE *) entry;
  6877.  
  6878.       /* Allocate the structure if it has not already been allocated by a
  6879.          derived class.  */
  6880.        if (ret == (ENTRY_TYPE *) NULL)
  6881.          {
  6882.            ret = ((ENTRY_TYPE *)
  6883.                   bfd_hash_allocate (table, sizeof (ENTRY_TYPE)));
  6884.            if (ret == (ENTRY_TYPE *) NULL)
  6885.              return NULL;
  6886.          }
  6887.  
  6888.       /* Call the allocation method of the base class.  */
  6889.        ret = ((ENTRY_TYPE *)
  6890.              BASE_NEWFUNC ((struct bfd_hash_entry *) ret, table, string));
  6891.  
  6892.       /* Initialize the local fields here.  */
  6893.  
  6894.        return (struct bfd_hash_entry *) ret;
  6895.      }
  6896.    *Description*
  6897. The creation routine for the linker hash table, which is in `linker.c',
  6898. looks just like this example.  FUNCTION_NAME is
  6899. `_bfd_link_hash_newfunc'.  ENTRY_TYPE is `struct bfd_link_hash_entry'.
  6900. BASE_NEWFUNC is `bfd_hash_newfunc', the creation routine for a basic
  6901. hash table.
  6902.  
  6903.    `_bfd_link_hash_newfunc' also initializes the local fields in a
  6904. linker hash table entry: `type', `written' and `next'.
  6905.  
  6906. 
  6907. File: bfd.info,  Node: Write Other Derived Routines,  Prev: Write the Derived Creation Routine,  Up: Deriving a New Hash Table Type
  6908.  
  6909. 2.19.4.3 Write other derived routines
  6910. .....................................
  6911.  
  6912. You will want to write other routines for your new hash table, as well.
  6913.  
  6914.    You will want an initialization routine which calls the
  6915. initialization routine of the hash table you are deriving from and
  6916. initializes any other local fields.  For the linker hash table, this is
  6917. `_bfd_link_hash_table_init' in `linker.c'.
  6918.  
  6919.    You will want a lookup routine which calls the lookup routine of the
  6920. hash table you are deriving from and casts the result.  The linker hash
  6921. table uses `bfd_link_hash_lookup' in `linker.c' (this actually takes an
  6922. additional argument which it uses to decide how to return the looked up
  6923. value).
  6924.  
  6925.    You may want a traversal routine.  This should just call the
  6926. traversal routine of the hash table you are deriving from with
  6927. appropriate casts.  The linker hash table uses `bfd_link_hash_traverse'
  6928. in `linker.c'.
  6929.  
  6930.    These routines may simply be defined as macros.  For example, the
  6931. a.out backend linker hash table, which is derived from the linker hash
  6932. table, uses macros for the lookup and traversal routines.  These are
  6933. `aout_link_hash_lookup' and `aout_link_hash_traverse' in aoutx.h.
  6934.  
  6935. 
  6936. File: bfd.info,  Node: BFD back ends,  Next: GNU Free Documentation License,  Prev: BFD front end,  Up: Top
  6937.  
  6938. 3 BFD back ends
  6939. ***************
  6940.  
  6941. * Menu:
  6942.  
  6943. * What to Put Where::
  6944. * aout ::    a.out backends
  6945. * coff ::    coff backends
  6946. * elf  ::    elf backends
  6947. * mmo  ::    mmo backend
  6948.  
  6949. 
  6950. File: bfd.info,  Node: What to Put Where,  Next: aout,  Prev: BFD back ends,  Up: BFD back ends
  6951.  
  6952.    All of BFD lives in one directory.
  6953.  
  6954. 
  6955. File: bfd.info,  Node: aout,  Next: coff,  Prev: What to Put Where,  Up: BFD back ends
  6956.  
  6957. 3.1 a.out backends
  6958. ==================
  6959.  
  6960. *Description*
  6961. BFD supports a number of different flavours of a.out format, though the
  6962. major differences are only the sizes of the structures on disk, and the
  6963. shape of the relocation information.
  6964.  
  6965.    The support is split into a basic support file `aoutx.h' and other
  6966. files which derive functions from the base. One derivation file is
  6967. `aoutf1.h' (for a.out flavour 1), and adds to the basic a.out functions
  6968. support for sun3, sun4, 386 and 29k a.out files, to create a target
  6969. jump vector for a specific target.
  6970.  
  6971.    This information is further split out into more specific files for
  6972. each machine, including `sunos.c' for sun3 and sun4, `newsos3.c' for
  6973. the Sony NEWS, and `demo64.c' for a demonstration of a 64 bit a.out
  6974. format.
  6975.  
  6976.    The base file `aoutx.h' defines general mechanisms for reading and
  6977. writing records to and from disk and various other methods which BFD
  6978. requires. It is included by `aout32.c' and `aout64.c' to form the names
  6979. `aout_32_swap_exec_header_in', `aout_64_swap_exec_header_in', etc.
  6980.  
  6981.    As an example, this is what goes on to make the back end for a sun4,
  6982. from `aout32.c':
  6983.  
  6984.             #define ARCH_SIZE 32
  6985.             #include "aoutx.h"
  6986.  
  6987.    Which exports names:
  6988.  
  6989.             ...
  6990.             aout_32_canonicalize_reloc
  6991.             aout_32_find_nearest_line
  6992.             aout_32_get_lineno
  6993.             aout_32_get_reloc_upper_bound
  6994.             ...
  6995.  
  6996.    from `sunos.c':
  6997.  
  6998.             #define TARGET_NAME "a.out-sunos-big"
  6999.             #define VECNAME    sunos_big_vec
  7000.             #include "aoutf1.h"
  7001.  
  7002.    requires all the names from `aout32.c', and produces the jump vector
  7003.  
  7004.             sunos_big_vec
  7005.  
  7006.    The file `host-aout.c' is a special case.  It is for a large set of
  7007. hosts that use "more or less standard" a.out files, and for which
  7008. cross-debugging is not interesting.  It uses the standard 32-bit a.out
  7009. support routines, but determines the file offsets and addresses of the
  7010. text, data, and BSS sections, the machine architecture and machine
  7011. type, and the entry point address, in a host-dependent manner.  Once
  7012. these values have been determined, generic code is used to handle the
  7013. object file.
  7014.  
  7015.    When porting it to run on a new system, you must supply:
  7016.  
  7017.              HOST_PAGE_SIZE
  7018.              HOST_SEGMENT_SIZE
  7019.              HOST_MACHINE_ARCH       (optional)
  7020.              HOST_MACHINE_MACHINE    (optional)
  7021.              HOST_TEXT_START_ADDR
  7022.              HOST_STACK_END_ADDR
  7023.  
  7024.    in the file `../include/sys/h-XXX.h' (for your host).  These values,
  7025. plus the structures and macros defined in `a.out.h' on your host
  7026. system, will produce a BFD target that will access ordinary a.out files
  7027. on your host. To configure a new machine to use `host-aout.c', specify:
  7028.  
  7029.             TDEFAULTS = -DDEFAULT_VECTOR=host_aout_big_vec
  7030.             TDEPFILES= host-aout.o trad-core.o
  7031.  
  7032.    in the `config/XXX.mt' file, and modify `configure.in' to use the
  7033. `XXX.mt' file (by setting "`bfd_target=XXX'") when your configuration
  7034. is selected.
  7035.  
  7036. 3.1.1 Relocations
  7037. -----------------
  7038.  
  7039. *Description*
  7040. The file `aoutx.h' provides for both the _standard_ and _extended_
  7041. forms of a.out relocation records.
  7042.  
  7043.    The standard records contain only an address, a symbol index, and a
  7044. type field. The extended records (used on 29ks and sparcs) also have a
  7045. full integer for an addend.
  7046.  
  7047. 3.1.2 Internal entry points
  7048. ---------------------------
  7049.  
  7050. *Description*
  7051. `aoutx.h' exports several routines for accessing the contents of an
  7052. a.out file, which are gathered and exported in turn by various format
  7053. specific files (eg sunos.c).
  7054.  
  7055. 3.1.2.1 `aout_SIZE_swap_exec_header_in'
  7056. .......................................
  7057.  
  7058. *Synopsis*
  7059.      void aout_SIZE_swap_exec_header_in,
  7060.         (bfd *abfd,
  7061.          struct external_exec *raw_bytes,
  7062.          struct internal_exec *execp);
  7063.    *Description*
  7064. Swap the information in an executable header RAW_BYTES taken from a raw
  7065. byte stream memory image into the internal exec header structure EXECP.
  7066.  
  7067. 3.1.2.2 `aout_SIZE_swap_exec_header_out'
  7068. ........................................
  7069.  
  7070. *Synopsis*
  7071.      void aout_SIZE_swap_exec_header_out
  7072.         (bfd *abfd,
  7073.          struct internal_exec *execp,
  7074.          struct external_exec *raw_bytes);
  7075.    *Description*
  7076. Swap the information in an internal exec header structure EXECP into
  7077. the buffer RAW_BYTES ready for writing to disk.
  7078.  
  7079. 3.1.2.3 `aout_SIZE_some_aout_object_p'
  7080. ......................................
  7081.  
  7082. *Synopsis*
  7083.      const bfd_target *aout_SIZE_some_aout_object_p
  7084.         (bfd *abfd,
  7085.          const bfd_target *(*callback_to_real_object_p) ());
  7086.    *Description*
  7087. Some a.out variant thinks that the file open in ABFD checking is an
  7088. a.out file.  Do some more checking, and set up for access if it really
  7089. is.  Call back to the calling environment's "finish up" function just
  7090. before returning, to handle any last-minute setup.
  7091.  
  7092. 3.1.2.4 `aout_SIZE_mkobject'
  7093. ............................
  7094.  
  7095. *Synopsis*
  7096.      bfd_boolean aout_SIZE_mkobject, (bfd *abfd);
  7097.    *Description*
  7098. Initialize BFD ABFD for use with a.out files.
  7099.  
  7100. 3.1.2.5 `aout_SIZE_machine_type'
  7101. ................................
  7102.  
  7103. *Synopsis*
  7104.      enum machine_type  aout_SIZE_machine_type
  7105.         (enum bfd_architecture arch,
  7106.          unsigned long machine));
  7107.    *Description*
  7108. Keep track of machine architecture and machine type for a.out's. Return
  7109. the `machine_type' for a particular architecture and machine, or
  7110. `M_UNKNOWN' if that exact architecture and machine can't be represented
  7111. in a.out format.
  7112.  
  7113.    If the architecture is understood, machine type 0 (default) is
  7114. always understood.
  7115.  
  7116. 3.1.2.6 `aout_SIZE_set_arch_mach'
  7117. .................................
  7118.  
  7119. *Synopsis*
  7120.      bfd_boolean aout_SIZE_set_arch_mach,
  7121.         (bfd *,
  7122.          enum bfd_architecture arch,
  7123.          unsigned long machine));
  7124.    *Description*
  7125. Set the architecture and the machine of the BFD ABFD to the values ARCH
  7126. and MACHINE.  Verify that ABFD's format can support the architecture
  7127. required.
  7128.  
  7129. 3.1.2.7 `aout_SIZE_new_section_hook'
  7130. ....................................
  7131.  
  7132. *Synopsis*
  7133.      bfd_boolean aout_SIZE_new_section_hook,
  7134.         (bfd *abfd,
  7135.          asection *newsect));
  7136.    *Description*
  7137. Called by the BFD in response to a `bfd_make_section' request.
  7138.  
  7139. 
  7140. File: bfd.info,  Node: coff,  Next: elf,  Prev: aout,  Up: BFD back ends
  7141.  
  7142. 3.2 coff backends
  7143. =================
  7144.  
  7145. BFD supports a number of different flavours of coff format.  The major
  7146. differences between formats are the sizes and alignments of fields in
  7147. structures on disk, and the occasional extra field.
  7148.  
  7149.    Coff in all its varieties is implemented with a few common files and
  7150. a number of implementation specific files. For example, The 88k bcs
  7151. coff format is implemented in the file `coff-m88k.c'. This file
  7152. `#include's `coff/m88k.h' which defines the external structure of the
  7153. coff format for the 88k, and `coff/internal.h' which defines the
  7154. internal structure. `coff-m88k.c' also defines the relocations used by
  7155. the 88k format *Note Relocations::.
  7156.  
  7157.    The Intel i960 processor version of coff is implemented in
  7158. `coff-i960.c'. This file has the same structure as `coff-m88k.c',
  7159. except that it includes `coff/i960.h' rather than `coff-m88k.h'.
  7160.  
  7161. 3.2.1 Porting to a new version of coff
  7162. --------------------------------------
  7163.  
  7164. The recommended method is to select from the existing implementations
  7165. the version of coff which is most like the one you want to use.  For
  7166. example, we'll say that i386 coff is the one you select, and that your
  7167. coff flavour is called foo.  Copy `i386coff.c' to `foocoff.c', copy
  7168. `../include/coff/i386.h' to `../include/coff/foo.h', and add the lines
  7169. to `targets.c' and `Makefile.in' so that your new back end is used.
  7170. Alter the shapes of the structures in `../include/coff/foo.h' so that
  7171. they match what you need. You will probably also have to add `#ifdef's
  7172. to the code in `coff/internal.h' and `coffcode.h' if your version of
  7173. coff is too wild.
  7174.  
  7175.    You can verify that your new BFD backend works quite simply by
  7176. building `objdump' from the `binutils' directory, and making sure that
  7177. its version of what's going on and your host system's idea (assuming it
  7178. has the pretty standard coff dump utility, usually called `att-dump' or
  7179. just `dump') are the same.  Then clean up your code, and send what
  7180. you've done to Cygnus. Then your stuff will be in the next release, and
  7181. you won't have to keep integrating it.
  7182.  
  7183. 3.2.2 How the coff backend works
  7184. --------------------------------
  7185.  
  7186. 3.2.2.1 File layout
  7187. ...................
  7188.  
  7189. The Coff backend is split into generic routines that are applicable to
  7190. any Coff target and routines that are specific to a particular target.
  7191. The target-specific routines are further split into ones which are
  7192. basically the same for all Coff targets except that they use the
  7193. external symbol format or use different values for certain constants.
  7194.  
  7195.    The generic routines are in `coffgen.c'.  These routines work for
  7196. any Coff target.  They use some hooks into the target specific code;
  7197. the hooks are in a `bfd_coff_backend_data' structure, one of which
  7198. exists for each target.
  7199.  
  7200.    The essentially similar target-specific routines are in
  7201. `coffcode.h'.  This header file includes executable C code.  The
  7202. various Coff targets first include the appropriate Coff header file,
  7203. make any special defines that are needed, and then include `coffcode.h'.
  7204.  
  7205.    Some of the Coff targets then also have additional routines in the
  7206. target source file itself.
  7207.  
  7208.    For example, `coff-i960.c' includes `coff/internal.h' and
  7209. `coff/i960.h'.  It then defines a few constants, such as `I960', and
  7210. includes `coffcode.h'.  Since the i960 has complex relocation types,
  7211. `coff-i960.c' also includes some code to manipulate the i960 relocs.
  7212. This code is not in `coffcode.h' because it would not be used by any
  7213. other target.
  7214.  
  7215. 3.2.2.2 Bit twiddling
  7216. .....................
  7217.  
  7218. Each flavour of coff supported in BFD has its own header file
  7219. describing the external layout of the structures. There is also an
  7220. internal description of the coff layout, in `coff/internal.h'. A major
  7221. function of the coff backend is swapping the bytes and twiddling the
  7222. bits to translate the external form of the structures into the normal
  7223. internal form. This is all performed in the `bfd_swap'_thing_direction
  7224. routines. Some elements are different sizes between different versions
  7225. of coff; it is the duty of the coff version specific include file to
  7226. override the definitions of various packing routines in `coffcode.h'.
  7227. E.g., the size of line number entry in coff is sometimes 16 bits, and
  7228. sometimes 32 bits. `#define'ing `PUT_LNSZ_LNNO' and `GET_LNSZ_LNNO'
  7229. will select the correct one. No doubt, some day someone will find a
  7230. version of coff which has a varying field size not catered to at the
  7231. moment. To port BFD, that person will have to add more `#defines'.
  7232. Three of the bit twiddling routines are exported to `gdb';
  7233. `coff_swap_aux_in', `coff_swap_sym_in' and `coff_swap_lineno_in'. `GDB'
  7234. reads the symbol table on its own, but uses BFD to fix things up.  More
  7235. of the bit twiddlers are exported for `gas'; `coff_swap_aux_out',
  7236. `coff_swap_sym_out', `coff_swap_lineno_out', `coff_swap_reloc_out',
  7237. `coff_swap_filehdr_out', `coff_swap_aouthdr_out',
  7238. `coff_swap_scnhdr_out'. `Gas' currently keeps track of all the symbol
  7239. table and reloc drudgery itself, thereby saving the internal BFD
  7240. overhead, but uses BFD to swap things on the way out, making cross
  7241. ports much safer.  Doing so also allows BFD (and thus the linker) to
  7242. use the same header files as `gas', which makes one avenue to disaster
  7243. disappear.
  7244.  
  7245. 3.2.2.3 Symbol reading
  7246. ......................
  7247.  
  7248. The simple canonical form for symbols used by BFD is not rich enough to
  7249. keep all the information available in a coff symbol table. The back end
  7250. gets around this problem by keeping the original symbol table around,
  7251. "behind the scenes".
  7252.  
  7253.    When a symbol table is requested (through a call to
  7254. `bfd_canonicalize_symtab'), a request gets through to
  7255. `coff_get_normalized_symtab'. This reads the symbol table from the coff
  7256. file and swaps all the structures inside into the internal form. It
  7257. also fixes up all the pointers in the table (represented in the file by
  7258. offsets from the first symbol in the table) into physical pointers to
  7259. elements in the new internal table. This involves some work since the
  7260. meanings of fields change depending upon context: a field that is a
  7261. pointer to another structure in the symbol table at one moment may be
  7262. the size in bytes of a structure at the next.  Another pass is made
  7263. over the table. All symbols which mark file names (`C_FILE' symbols)
  7264. are modified so that the internal string points to the value in the
  7265. auxent (the real filename) rather than the normal text associated with
  7266. the symbol (`".file"').
  7267.  
  7268.    At this time the symbol names are moved around. Coff stores all
  7269. symbols less than nine characters long physically within the symbol
  7270. table; longer strings are kept at the end of the file in the string
  7271. table. This pass moves all strings into memory and replaces them with
  7272. pointers to the strings.
  7273.  
  7274.    The symbol table is massaged once again, this time to create the
  7275. canonical table used by the BFD application. Each symbol is inspected
  7276. in turn, and a decision made (using the `sclass' field) about the
  7277. various flags to set in the `asymbol'.  *Note Symbols::. The generated
  7278. canonical table shares strings with the hidden internal symbol table.
  7279.  
  7280.    Any linenumbers are read from the coff file too, and attached to the
  7281. symbols which own the functions the linenumbers belong to.
  7282.  
  7283. 3.2.2.4 Symbol writing
  7284. ......................
  7285.  
  7286. Writing a symbol to a coff file which didn't come from a coff file will
  7287. lose any debugging information. The `asymbol' structure remembers the
  7288. BFD from which the symbol was taken, and on output the back end makes
  7289. sure that the same destination target as source target is present.
  7290.  
  7291.    When the symbols have come from a coff file then all the debugging
  7292. information is preserved.
  7293.  
  7294.    Symbol tables are provided for writing to the back end in a vector
  7295. of pointers to pointers. This allows applications like the linker to
  7296. accumulate and output large symbol tables without having to do too much
  7297. byte copying.
  7298.  
  7299.    This function runs through the provided symbol table and patches
  7300. each symbol marked as a file place holder (`C_FILE') to point to the
  7301. next file place holder in the list. It also marks each `offset' field
  7302. in the list with the offset from the first symbol of the current symbol.
  7303.  
  7304.    Another function of this procedure is to turn the canonical value
  7305. form of BFD into the form used by coff. Internally, BFD expects symbol
  7306. values to be offsets from a section base; so a symbol physically at
  7307. 0x120, but in a section starting at 0x100, would have the value 0x20.
  7308. Coff expects symbols to contain their final value, so symbols have
  7309. their values changed at this point to reflect their sum with their
  7310. owning section.  This transformation uses the `output_section' field of
  7311. the `asymbol''s `asection' *Note Sections::.
  7312.  
  7313.    * `coff_mangle_symbols'
  7314.    This routine runs though the provided symbol table and uses the
  7315. offsets generated by the previous pass and the pointers generated when
  7316. the symbol table was read in to create the structured hierarchy
  7317. required by coff. It changes each pointer to a symbol into the index
  7318. into the symbol table of the asymbol.
  7319.  
  7320.    * `coff_write_symbols'
  7321.    This routine runs through the symbol table and patches up the
  7322. symbols from their internal form into the coff way, calls the bit
  7323. twiddlers, and writes out the table to the file.
  7324.  
  7325. 3.2.2.5 `coff_symbol_type'
  7326. ..........................
  7327.  
  7328. *Description*
  7329. The hidden information for an `asymbol' is described in a
  7330. `combined_entry_type':
  7331.  
  7332.  
  7333.      typedef struct coff_ptr_struct
  7334.      {
  7335.        /* Remembers the offset from the first symbol in the file for
  7336.           this symbol. Generated by coff_renumber_symbols. */
  7337.        unsigned int offset;
  7338.  
  7339.        /* Should the value of this symbol be renumbered.  Used for
  7340.           XCOFF C_BSTAT symbols.  Set by coff_slurp_symbol_table.  */
  7341.        unsigned int fix_value : 1;
  7342.  
  7343.        /* Should the tag field of this symbol be renumbered.
  7344.           Created by coff_pointerize_aux. */
  7345.        unsigned int fix_tag : 1;
  7346.  
  7347.        /* Should the endidx field of this symbol be renumbered.
  7348.           Created by coff_pointerize_aux. */
  7349.        unsigned int fix_end : 1;
  7350.  
  7351.        /* Should the x_csect.x_scnlen field be renumbered.
  7352.           Created by coff_pointerize_aux. */
  7353.        unsigned int fix_scnlen : 1;
  7354.  
  7355.        /* Fix up an XCOFF C_BINCL/C_EINCL symbol.  The value is the
  7356.           index into the line number entries.  Set by coff_slurp_symbol_table.  */
  7357.        unsigned int fix_line : 1;
  7358.  
  7359.        /* The container for the symbol structure as read and translated
  7360.           from the file. */
  7361.        union
  7362.        {
  7363.          union internal_auxent auxent;
  7364.          struct internal_syment syment;
  7365.        } u;
  7366.      } combined_entry_type;
  7367.  
  7368.  
  7369.      /* Each canonical asymbol really looks like this: */
  7370.  
  7371.      typedef struct coff_symbol_struct
  7372.      {
  7373.        /* The actual symbol which the rest of BFD works with */
  7374.        asymbol symbol;
  7375.  
  7376.        /* A pointer to the hidden information for this symbol */
  7377.        combined_entry_type *native;
  7378.  
  7379.        /* A pointer to the linenumber information for this symbol */
  7380.        struct lineno_cache_entry *lineno;
  7381.  
  7382.        /* Have the line numbers been relocated yet ? */
  7383.        bfd_boolean done_lineno;
  7384.      } coff_symbol_type;
  7385.    
  7386. 3.2.2.6 `bfd_coff_backend_data'
  7387. ...............................
  7388.  
  7389.      /* COFF symbol classifications.  */
  7390.  
  7391.      enum coff_symbol_classification
  7392.      {
  7393.        /* Global symbol.  */
  7394.        COFF_SYMBOL_GLOBAL,
  7395.        /* Common symbol.  */
  7396.        COFF_SYMBOL_COMMON,
  7397.        /* Undefined symbol.  */
  7398.        COFF_SYMBOL_UNDEFINED,
  7399.        /* Local symbol.  */
  7400.        COFF_SYMBOL_LOCAL,
  7401.        /* PE section symbol.  */
  7402.        COFF_SYMBOL_PE_SECTION
  7403.      };
  7404. Special entry points for gdb to swap in coff symbol table parts:
  7405.      typedef struct
  7406.      {
  7407.        void (*_bfd_coff_swap_aux_in)
  7408.          PARAMS ((bfd *, PTR, int, int, int, int, PTR));
  7409.  
  7410.        void (*_bfd_coff_swap_sym_in)
  7411.          PARAMS ((bfd *, PTR, PTR));
  7412.  
  7413.        void (*_bfd_coff_swap_lineno_in)
  7414.          PARAMS ((bfd *, PTR, PTR));
  7415.  
  7416.        unsigned int (*_bfd_coff_swap_aux_out)
  7417.          PARAMS ((bfd *, PTR, int, int, int, int, PTR));
  7418.  
  7419.        unsigned int (*_bfd_coff_swap_sym_out)
  7420.          PARAMS ((bfd *, PTR, PTR));
  7421.  
  7422.        unsigned int (*_bfd_coff_swap_lineno_out)
  7423.          PARAMS ((bfd *, PTR, PTR));
  7424.  
  7425.        unsigned int (*_bfd_coff_swap_reloc_out)
  7426.          PARAMS ((bfd *, PTR, PTR));
  7427.  
  7428.        unsigned int (*_bfd_coff_swap_filehdr_out)
  7429.          PARAMS ((bfd *, PTR, PTR));
  7430.  
  7431.        unsigned int (*_bfd_coff_swap_aouthdr_out)
  7432.          PARAMS ((bfd *, PTR, PTR));
  7433.  
  7434.        unsigned int (*_bfd_coff_swap_scnhdr_out)
  7435.          PARAMS ((bfd *, PTR, PTR));
  7436.  
  7437.        unsigned int _bfd_filhsz;
  7438.        unsigned int _bfd_aoutsz;
  7439.        unsigned int _bfd_scnhsz;
  7440.        unsigned int _bfd_symesz;
  7441.        unsigned int _bfd_auxesz;
  7442.        unsigned int _bfd_relsz;
  7443.        unsigned int _bfd_linesz;
  7444.        unsigned int _bfd_filnmlen;
  7445.        bfd_boolean _bfd_coff_long_filenames;
  7446.        bfd_boolean _bfd_coff_long_section_names;
  7447.        unsigned int _bfd_coff_default_section_alignment_power;
  7448.        bfd_boolean _bfd_coff_force_symnames_in_strings;
  7449.        unsigned int _bfd_coff_debug_string_prefix_length;
  7450.  
  7451.        void (*_bfd_coff_swap_filehdr_in)
  7452.          PARAMS ((bfd *, PTR, PTR));
  7453.  
  7454.        void (*_bfd_coff_swap_aouthdr_in)
  7455.          PARAMS ((bfd *, PTR, PTR));
  7456.  
  7457.        void (*_bfd_coff_swap_scnhdr_in)
  7458.          PARAMS ((bfd *, PTR, PTR));
  7459.  
  7460.        void (*_bfd_coff_swap_reloc_in)
  7461.          PARAMS ((bfd *abfd, PTR, PTR));
  7462.  
  7463.        bfd_boolean (*_bfd_coff_bad_format_hook)
  7464.          PARAMS ((bfd *, PTR));
  7465.  
  7466.        bfd_boolean (*_bfd_coff_set_arch_mach_hook)
  7467.          PARAMS ((bfd *, PTR));
  7468.  
  7469.        PTR (*_bfd_coff_mkobject_hook)
  7470.          PARAMS ((bfd *, PTR, PTR));
  7471.  
  7472.        bfd_boolean (*_bfd_styp_to_sec_flags_hook)
  7473.          PARAMS ((bfd *, PTR, const char *, asection *, flagword *));
  7474.  
  7475.        void (*_bfd_set_alignment_hook)
  7476.          PARAMS ((bfd *, asection *, PTR));
  7477.  
  7478.        bfd_boolean (*_bfd_coff_slurp_symbol_table)
  7479.          PARAMS ((bfd *));
  7480.  
  7481.        bfd_boolean (*_bfd_coff_symname_in_debug)
  7482.          PARAMS ((bfd *, struct internal_syment *));
  7483.  
  7484.        bfd_boolean (*_bfd_coff_pointerize_aux_hook)
  7485.          PARAMS ((bfd *, combined_entry_type *, combined_entry_type *,
  7486.                  unsigned int, combined_entry_type *));
  7487.  
  7488.        bfd_boolean (*_bfd_coff_print_aux)
  7489.          PARAMS ((bfd *, FILE *, combined_entry_type *, combined_entry_type *,
  7490.                  combined_entry_type *, unsigned int));
  7491.  
  7492.        void (*_bfd_coff_reloc16_extra_cases)
  7493.          PARAMS ((bfd *, struct bfd_link_info *, struct bfd_link_order *, arelent *,
  7494.                 bfd_byte *, unsigned int *, unsigned int *));
  7495.  
  7496.        int (*_bfd_coff_reloc16_estimate)
  7497.          PARAMS ((bfd *, asection *, arelent *, unsigned int,
  7498.                  struct bfd_link_info *));
  7499.  
  7500.        enum coff_symbol_classification (*_bfd_coff_classify_symbol)
  7501.          PARAMS ((bfd *, struct internal_syment *));
  7502.  
  7503.        bfd_boolean (*_bfd_coff_compute_section_file_positions)
  7504.          PARAMS ((bfd *));
  7505.  
  7506.        bfd_boolean (*_bfd_coff_start_final_link)
  7507.          PARAMS ((bfd *, struct bfd_link_info *));
  7508.  
  7509.        bfd_boolean (*_bfd_coff_relocate_section)
  7510.          PARAMS ((bfd *, struct bfd_link_info *, bfd *, asection *, bfd_byte *,
  7511.                  struct internal_reloc *, struct internal_syment *, asection **));
  7512.  
  7513.        reloc_howto_type *(*_bfd_coff_rtype_to_howto)
  7514.          PARAMS ((bfd *, asection *, struct internal_reloc *,
  7515.                  struct coff_link_hash_entry *, struct internal_syment *,
  7516.                  bfd_vma *));
  7517.  
  7518.        bfd_boolean (*_bfd_coff_adjust_symndx)
  7519.          PARAMS ((bfd *, struct bfd_link_info *, bfd *, asection *,
  7520.                  struct internal_reloc *, bfd_boolean *));
  7521.  
  7522.        bfd_boolean (*_bfd_coff_link_add_one_symbol)
  7523.          PARAMS ((struct bfd_link_info *, bfd *, const char *, flagword,
  7524.                  asection *, bfd_vma, const char *, bfd_boolean, bfd_boolean,
  7525.                  struct bfd_link_hash_entry **));
  7526.  
  7527.        bfd_boolean (*_bfd_coff_link_output_has_begun)
  7528.          PARAMS ((bfd *, struct coff_final_link_info *));
  7529.  
  7530.        bfd_boolean (*_bfd_coff_final_link_postscript)
  7531.          PARAMS ((bfd *, struct coff_final_link_info *));
  7532.  
  7533.      } bfd_coff_backend_data;
  7534.  
  7535.      #define coff_backend_info(abfd) \
  7536.        ((bfd_coff_backend_data *) (abfd)->xvec->backend_data)
  7537.  
  7538.      #define bfd_coff_swap_aux_in(a,e,t,c,ind,num,i) \
  7539.        ((coff_backend_info (a)->_bfd_coff_swap_aux_in) (a,e,t,c,ind,num,i))
  7540.  
  7541.      #define bfd_coff_swap_sym_in(a,e,i) \
  7542.        ((coff_backend_info (a)->_bfd_coff_swap_sym_in) (a,e,i))
  7543.  
  7544.      #define bfd_coff_swap_lineno_in(a,e,i) \
  7545.        ((coff_backend_info ( a)->_bfd_coff_swap_lineno_in) (a,e,i))
  7546.  
  7547.      #define bfd_coff_swap_reloc_out(abfd, i, o) \
  7548.        ((coff_backend_info (abfd)->_bfd_coff_swap_reloc_out) (abfd, i, o))
  7549.  
  7550.      #define bfd_coff_swap_lineno_out(abfd, i, o) \
  7551.        ((coff_backend_info (abfd)->_bfd_coff_swap_lineno_out) (abfd, i, o))
  7552.  
  7553.      #define bfd_coff_swap_aux_out(a,i,t,c,ind,num,o) \
  7554.        ((coff_backend_info (a)->_bfd_coff_swap_aux_out) (a,i,t,c,ind,num,o))
  7555.  
  7556.      #define bfd_coff_swap_sym_out(abfd, i,o) \
  7557.        ((coff_backend_info (abfd)->_bfd_coff_swap_sym_out) (abfd, i, o))
  7558.  
  7559.      #define bfd_coff_swap_scnhdr_out(abfd, i,o) \
  7560.        ((coff_backend_info (abfd)->_bfd_coff_swap_scnhdr_out) (abfd, i, o))
  7561.  
  7562.      #define bfd_coff_swap_filehdr_out(abfd, i,o) \
  7563.        ((coff_backend_info (abfd)->_bfd_coff_swap_filehdr_out) (abfd, i, o))
  7564.  
  7565.      #define bfd_coff_swap_aouthdr_out(abfd, i,o) \
  7566.        ((coff_backend_info (abfd)->_bfd_coff_swap_aouthdr_out) (abfd, i, o))
  7567.  
  7568.      #define bfd_coff_filhsz(abfd) (coff_backend_info (abfd)->_bfd_filhsz)
  7569.      #define bfd_coff_aoutsz(abfd) (coff_backend_info (abfd)->_bfd_aoutsz)
  7570.      #define bfd_coff_scnhsz(abfd) (coff_backend_info (abfd)->_bfd_scnhsz)
  7571.      #define bfd_coff_symesz(abfd) (coff_backend_info (abfd)->_bfd_symesz)
  7572.      #define bfd_coff_auxesz(abfd) (coff_backend_info (abfd)->_bfd_auxesz)
  7573.      #define bfd_coff_relsz(abfd)  (coff_backend_info (abfd)->_bfd_relsz)
  7574.      #define bfd_coff_linesz(abfd) (coff_backend_info (abfd)->_bfd_linesz)
  7575.      #define bfd_coff_filnmlen(abfd) (coff_backend_info (abfd)->_bfd_filnmlen)
  7576.      #define bfd_coff_long_filenames(abfd) \
  7577.        (coff_backend_info (abfd)->_bfd_coff_long_filenames)
  7578.      #define bfd_coff_long_section_names(abfd) \
  7579.        (coff_backend_info (abfd)->_bfd_coff_long_section_names)
  7580.      #define bfd_coff_default_section_alignment_power(abfd) \
  7581.        (coff_backend_info (abfd)->_bfd_coff_default_section_alignment_power)
  7582.      #define bfd_coff_swap_filehdr_in(abfd, i,o) \
  7583.        ((coff_backend_info (abfd)->_bfd_coff_swap_filehdr_in) (abfd, i, o))
  7584.  
  7585.      #define bfd_coff_swap_aouthdr_in(abfd, i,o) \
  7586.        ((coff_backend_info (abfd)->_bfd_coff_swap_aouthdr_in) (abfd, i, o))
  7587.  
  7588.      #define bfd_coff_swap_scnhdr_in(abfd, i,o) \
  7589.        ((coff_backend_info (abfd)->_bfd_coff_swap_scnhdr_in) (abfd, i, o))
  7590.  
  7591.      #define bfd_coff_swap_reloc_in(abfd, i, o) \
  7592.        ((coff_backend_info (abfd)->_bfd_coff_swap_reloc_in) (abfd, i, o))
  7593.  
  7594.      #define bfd_coff_bad_format_hook(abfd, filehdr) \
  7595.        ((coff_backend_info (abfd)->_bfd_coff_bad_format_hook) (abfd, filehdr))
  7596.  
  7597.      #define bfd_coff_set_arch_mach_hook(abfd, filehdr)\
  7598.        ((coff_backend_info (abfd)->_bfd_coff_set_arch_mach_hook) (abfd, filehdr))
  7599.      #define bfd_coff_mkobject_hook(abfd, filehdr, aouthdr)\
  7600.        ((coff_backend_info (abfd)->_bfd_coff_mkobject_hook)\
  7601.         (abfd, filehdr, aouthdr))
  7602.  
  7603.      #define bfd_coff_styp_to_sec_flags_hook(abfd, scnhdr, name, section, flags_ptr)\
  7604.        ((coff_backend_info (abfd)->_bfd_styp_to_sec_flags_hook)\
  7605.         (abfd, scnhdr, name, section, flags_ptr))
  7606.  
  7607.      #define bfd_coff_set_alignment_hook(abfd, sec, scnhdr)\
  7608.        ((coff_backend_info (abfd)->_bfd_set_alignment_hook) (abfd, sec, scnhdr))
  7609.  
  7610.      #define bfd_coff_slurp_symbol_table(abfd)\
  7611.        ((coff_backend_info (abfd)->_bfd_coff_slurp_symbol_table) (abfd))
  7612.  
  7613.      #define bfd_coff_symname_in_debug(abfd, sym)\
  7614.        ((coff_backend_info (abfd)->_bfd_coff_symname_in_debug) (abfd, sym))
  7615.  
  7616.      #define bfd_coff_force_symnames_in_strings(abfd)\
  7617.        (coff_backend_info (abfd)->_bfd_coff_force_symnames_in_strings)
  7618.  
  7619.      #define bfd_coff_debug_string_prefix_length(abfd)\
  7620.        (coff_backend_info (abfd)->_bfd_coff_debug_string_prefix_length)
  7621.  
  7622.      #define bfd_coff_print_aux(abfd, file, base, symbol, aux, indaux)\
  7623.        ((coff_backend_info (abfd)->_bfd_coff_print_aux)\
  7624.         (abfd, file, base, symbol, aux, indaux))
  7625.  
  7626.      #define bfd_coff_reloc16_extra_cases(abfd, link_info, link_order,\
  7627.                                           reloc, data, src_ptr, dst_ptr)\
  7628.        ((coff_backend_info (abfd)->_bfd_coff_reloc16_extra_cases)\
  7629.         (abfd, link_info, link_order, reloc, data, src_ptr, dst_ptr))
  7630.  
  7631.      #define bfd_coff_reloc16_estimate(abfd, section, reloc, shrink, link_info)\
  7632.        ((coff_backend_info (abfd)->_bfd_coff_reloc16_estimate)\
  7633.         (abfd, section, reloc, shrink, link_info))
  7634.  
  7635.      #define bfd_coff_classify_symbol(abfd, sym)\
  7636.        ((coff_backend_info (abfd)->_bfd_coff_classify_symbol)\
  7637.         (abfd, sym))
  7638.  
  7639.      #define bfd_coff_compute_section_file_positions(abfd)\
  7640.        ((coff_backend_info (abfd)->_bfd_coff_compute_section_file_positions)\
  7641.         (abfd))
  7642.  
  7643.      #define bfd_coff_start_final_link(obfd, info)\
  7644.        ((coff_backend_info (obfd)->_bfd_coff_start_final_link)\
  7645.         (obfd, info))
  7646.      #define bfd_coff_relocate_section(obfd,info,ibfd,o,con,rel,isyms,secs)\
  7647.        ((coff_backend_info (ibfd)->_bfd_coff_relocate_section)\
  7648.         (obfd, info, ibfd, o, con, rel, isyms, secs))
  7649.      #define bfd_coff_rtype_to_howto(abfd, sec, rel, h, sym, addendp)\
  7650.        ((coff_backend_info (abfd)->_bfd_coff_rtype_to_howto)\
  7651.         (abfd, sec, rel, h, sym, addendp))
  7652.      #define bfd_coff_adjust_symndx(obfd, info, ibfd, sec, rel, adjustedp)\
  7653.        ((coff_backend_info (abfd)->_bfd_coff_adjust_symndx)\
  7654.         (obfd, info, ibfd, sec, rel, adjustedp))
  7655.      #define bfd_coff_link_add_one_symbol(info, abfd, name, flags, section,\
  7656.                                           value, string, cp, coll, hashp)\
  7657.        ((coff_backend_info (abfd)->_bfd_coff_link_add_one_symbol)\
  7658.         (info, abfd, name, flags, section, value, string, cp, coll, hashp))
  7659.  
  7660.      #define bfd_coff_link_output_has_begun(a,p) \
  7661.        ((coff_backend_info (a)->_bfd_coff_link_output_has_begun) (a,p))
  7662.      #define bfd_coff_final_link_postscript(a,p) \
  7663.        ((coff_backend_info (a)->_bfd_coff_final_link_postscript) (a,p))
  7664.  
  7665. 3.2.2.7 Writing relocations
  7666. ...........................
  7667.  
  7668. To write relocations, the back end steps though the canonical
  7669. relocation table and create an `internal_reloc'. The symbol index to
  7670. use is removed from the `offset' field in the symbol table supplied.
  7671. The address comes directly from the sum of the section base address and
  7672. the relocation offset; the type is dug directly from the howto field.
  7673. Then the `internal_reloc' is swapped into the shape of an
  7674. `external_reloc' and written out to disk.
  7675.  
  7676. 3.2.2.8 Reading linenumbers
  7677. ...........................
  7678.  
  7679. Creating the linenumber table is done by reading in the entire coff
  7680. linenumber table, and creating another table for internal use.
  7681.  
  7682.    A coff linenumber table is structured so that each function is
  7683. marked as having a line number of 0. Each line within the function is
  7684. an offset from the first line in the function. The base of the line
  7685. number information for the table is stored in the symbol associated
  7686. with the function.
  7687.  
  7688.    Note: The PE format uses line number 0 for a flag indicating a new
  7689. source file.
  7690.  
  7691.    The information is copied from the external to the internal table,
  7692. and each symbol which marks a function is marked by pointing its...
  7693.  
  7694.    How does this work ?
  7695.  
  7696. 3.2.2.9 Reading relocations
  7697. ...........................
  7698.  
  7699. Coff relocations are easily transformed into the internal BFD form
  7700. (`arelent').
  7701.  
  7702.    Reading a coff relocation table is done in the following stages:
  7703.  
  7704.    * Read the entire coff relocation table into memory.
  7705.  
  7706.    * Process each relocation in turn; first swap it from the external
  7707.      to the internal form.
  7708.  
  7709.    * Turn the symbol referenced in the relocation's symbol index into a
  7710.      pointer into the canonical symbol table.  This table is the same
  7711.      as the one returned by a call to `bfd_canonicalize_symtab'. The
  7712.      back end will call that routine and save the result if a
  7713.      canonicalization hasn't been done.
  7714.  
  7715.    * The reloc index is turned into a pointer to a howto structure, in
  7716.      a back end specific way. For instance, the 386 and 960 use the
  7717.      `r_type' to directly produce an index into a howto table vector;
  7718.      the 88k subtracts a number from the `r_type' field and creates an
  7719.      addend field.
  7720.  
  7721. 
  7722. File: bfd.info,  Node: elf,  Next: mmo,  Prev: coff,  Up: BFD back ends
  7723.  
  7724. 3.3
  7725. ===
  7726.  
  7727. ELF backends
  7728.  
  7729.    BFD support for ELF formats is being worked on.  Currently, the best
  7730. supported back ends are for sparc and i386 (running svr4 or Solaris 2).
  7731.  
  7732.    Documentation of the internals of the support code still needs to be
  7733. written.  The code is changing quickly enough that we haven't bothered
  7734. yet.
  7735.  
  7736. 3.3.0.1 `bfd_elf_find_section'
  7737. ..............................
  7738.  
  7739. *Synopsis*
  7740.      struct elf_internal_shdr *bfd_elf_find_section (bfd *abfd, char *name);
  7741.    *Description*
  7742. Helper functions for GDB to locate the string tables.  Since BFD hides
  7743. string tables from callers, GDB needs to use an internal hook to find
  7744. them.  Sun's .stabstr, in particular, isn't even pointed to by the
  7745. .stab section, so ordinary mechanisms wouldn't work to find it, even if
  7746. we had some.
  7747.  
  7748. 
  7749. File: bfd.info,  Node: mmo,  Prev: elf,  Up: BFD back ends
  7750.  
  7751. 3.4 mmo backend
  7752. ===============
  7753.  
  7754. The mmo object format is used exclusively together with Professor
  7755. Donald E. Knuth's educational 64-bit processor MMIX.  The simulator
  7756. `mmix' which is available at
  7757. `http://www-cs-faculty.stanford.edu/~knuth/programs/mmix.tar.gz'
  7758. understands this format.  That package also includes a combined
  7759. assembler and linker called `mmixal'.  The mmo format has no advantages
  7760. feature-wise compared to e.g. ELF.  It is a simple non-relocatable
  7761. object format with no support for archives or debugging information,
  7762. except for symbol value information and line numbers (which is not yet
  7763. implemented in BFD).  See
  7764. `http://www-cs-faculty.stanford.edu/~knuth/mmix.html' for more
  7765. information about MMIX.  The ELF format is used for intermediate object
  7766. files in the BFD implementation.
  7767.  
  7768. * Menu:
  7769.  
  7770. * File layout::
  7771. * Symbol-table::
  7772. * mmo section mapping::
  7773.  
  7774. 
  7775. File: bfd.info,  Node: File layout,  Next: Symbol-table,  Prev: mmo,  Up: mmo
  7776.  
  7777. 3.4.1 File layout
  7778. -----------------
  7779.  
  7780. The mmo file contents is not partitioned into named sections as with
  7781. e.g. ELF.  Memory areas is formed by specifying the location of the
  7782. data that follows.  Only the memory area `0x0000...00' to `0x01ff...ff'
  7783. is executable, so it is used for code (and constants) and the area
  7784. `0x2000...00' to `0x20ff...ff' is used for writable data.  *Note mmo
  7785. section mapping::.
  7786.  
  7787.    There is provision for specifying "special data" of 65536 different
  7788. types.  We use type 80 (decimal), arbitrarily chosen the same as the
  7789. ELF `e_machine' number for MMIX, filling it with section information
  7790. normally found in ELF objects. *Note mmo section mapping::.
  7791.  
  7792.    Contents is entered as 32-bit words, xor:ed over previous contents,
  7793. always zero-initialized.  A word that starts with the byte `0x98' forms
  7794. a command called a `lopcode', where the next byte distinguished between
  7795. the thirteen lopcodes.  The two remaining bytes, called the `Y' and `Z'
  7796. fields, or the `YZ' field (a 16-bit big-endian number), are used for
  7797. various purposes different for each lopcode.  As documented in
  7798. `http://www-cs-faculty.stanford.edu/~knuth/mmixal-intro.ps.gz', the
  7799. lopcodes are:
  7800.  
  7801. `lop_quote'
  7802.      0x98000001.  The next word is contents, regardless of whether it
  7803.      starts with 0x98 or not.
  7804.  
  7805. `lop_loc'
  7806.      0x9801YYZZ, where `Z' is 1 or 2.  This is a location directive,
  7807.      setting the location for the next data to the next 32-bit word
  7808.      (for Z = 1) or 64-bit word (for Z = 2), plus Y * 2^56.  Normally
  7809.      `Y' is 0 for the text segment and 2 for the data segment.
  7810.  
  7811. `lop_skip'
  7812.      0x9802YYZZ.  Increase the current location by `YZ' bytes.
  7813.  
  7814. `lop_fixo'
  7815.      0x9803YYZZ, where `Z' is 1 or 2.  Store the current location as 64
  7816.      bits into the location pointed to by the next 32-bit (Z = 1) or
  7817.      64-bit (Z = 2) word, plus Y * 2^56.
  7818.  
  7819. `lop_fixr'
  7820.      0x9804YYZZ.  `YZ' is stored into the current location plus 2 - 4 *
  7821.      YZ.
  7822.  
  7823. `lop_fixrx'
  7824.      0x980500ZZ.  `Z' is 16 or 24.  A value `L' derived from the
  7825.      following 32-bit word are used in a manner similar to `YZ' in
  7826.      lop_fixr: it is xor:ed into the current location minus 4 * L.  The
  7827.      first byte of the word is 0 or 1.  If it is 1, then L = (LOWEST 24
  7828.      BITS OF WORD) - 2^Z, if 0, then L = (LOWEST 24 BITS OF WORD).
  7829.  
  7830. `lop_file'
  7831.      0x9806YYZZ.  `Y' is the file number, `Z' is count of 32-bit words.
  7832.      Set the file number to `Y' and the line counter to 0.  The next Z
  7833.      * 4 bytes contain the file name, padded with zeros if the count is
  7834.      not a multiple of four.  The same `Y' may occur multiple times,
  7835.      but `Z' must be 0 for all but the first occurrence.
  7836.  
  7837. `lop_line'
  7838.      0x9807YYZZ.  `YZ' is the line number.  Together with lop_file, it
  7839.      forms the source location for the next 32-bit word.  Note that for
  7840.      each non-lopcode 32-bit word, line numbers are assumed incremented
  7841.      by one.
  7842.  
  7843. `lop_spec'
  7844.      0x9808YYZZ.  `YZ' is the type number.  Data until the next lopcode
  7845.      other than lop_quote forms special data of type `YZ'.  *Note mmo
  7846.      section mapping::.
  7847.  
  7848.      Other types than 80, (or type 80 with a content that does not
  7849.      parse) is stored in sections named `.MMIX.spec_data.N' where N is
  7850.      the `YZ'-type.  The flags for such a sections say not to allocate
  7851.      or load the data.  The vma is 0.  Contents of multiple occurrences
  7852.      of special data N is concatenated to the data of the previous
  7853.      lop_spec Ns.  The location in data or code at which the lop_spec
  7854.      occurred is lost.
  7855.  
  7856. `lop_pre'
  7857.      0x980901ZZ.  The first lopcode in a file.  The `Z' field forms the
  7858.      length of header information in 32-bit words, where the first word
  7859.      tells the time in seconds since `00:00:00 GMT Jan 1 1970'.
  7860.  
  7861. `lop_post'
  7862.      0x980a00ZZ.  Z > 32.  This lopcode follows after all
  7863.      content-generating lopcodes in a program.  The `Z' field denotes
  7864.      the value of `rG' at the beginning of the program.  The following
  7865.      256 - Z big-endian 64-bit words are loaded into global registers
  7866.      `$G' ... `$255'.
  7867.  
  7868. `lop_stab'
  7869.      0x980b0000.  The next-to-last lopcode in a program.  Must follow
  7870.      immediately after the lop_post lopcode and its data.  After this
  7871.      lopcode follows all symbols in a compressed format (*note
  7872.      Symbol-table::).
  7873.  
  7874. `lop_end'
  7875.      0x980cYYZZ.  The last lopcode in a program.  It must follow the
  7876.      lop_stab lopcode and its data.  The `YZ' field contains the number
  7877.      of 32-bit words of symbol table information after the preceding
  7878.      lop_stab lopcode.
  7879.  
  7880.    Note that the lopcode "fixups"; `lop_fixr', `lop_fixrx' and
  7881. `lop_fixo' are not generated by BFD, but are handled.  They are
  7882. generated by `mmixal'.
  7883.  
  7884.    This trivial one-label, one-instruction file:
  7885.  
  7886.       :Main TRAP 1,2,3
  7887.  
  7888.    can be represented this way in mmo:
  7889.  
  7890.       0x98090101 - lop_pre, one 32-bit word with timestamp.
  7891.       <timestamp>
  7892.       0x98010002 - lop_loc, text segment, using a 64-bit address.
  7893.                    Note that mmixal does not emit this for the file above.
  7894.       0x00000000 - Address, high 32 bits.
  7895.       0x00000000 - Address, low 32 bits.
  7896.       0x98060002 - lop_file, 2 32-bit words for file-name.
  7897.       0x74657374 - "test"
  7898.       0x2e730000 - ".s\0\0"
  7899.       0x98070001 - lop_line, line 1.
  7900.       0x00010203 - TRAP 1,2,3
  7901.       0x980a00ff - lop_post, setting $255 to 0.
  7902.       0x00000000
  7903.       0x00000000
  7904.       0x980b0000 - lop_stab for ":Main" = 0, serial 1.
  7905.       0x203a4040   *Note Symbol-table::.
  7906.       0x10404020
  7907.       0x4d206120
  7908.       0x69016e00
  7909.       0x81000000
  7910.       0x980c0005 - lop_end; symbol table contained five 32-bit words.
  7911.  
  7912. 
  7913. File: bfd.info,  Node: Symbol-table,  Next: mmo section mapping,  Prev: File layout,  Up: mmo
  7914.  
  7915. 3.4.2 Symbol table format
  7916. -------------------------
  7917.  
  7918. From mmixal.w (or really, the generated mmixal.tex) in
  7919. `http://www-cs-faculty.stanford.edu/~knuth/programs/mmix.tar.gz'):
  7920. "Symbols are stored and retrieved by means of a `ternary search trie',
  7921. following ideas of Bentley and Sedgewick. (See ACM-SIAM Symp. on
  7922. Discrete Algorithms `8' (1997), 360-369; R.Sedgewick, `Algorithms in C'
  7923. (Reading, Mass.  Addison-Wesley, 1998), `15.4'.)  Each trie node stores
  7924. a character, and there are branches to subtries for the cases where a
  7925. given character is less than, equal to, or greater than the character
  7926. in the trie.  There also is a pointer to a symbol table entry if a
  7927. symbol ends at the current node."
  7928.  
  7929.    So it's a tree encoded as a stream of bytes.  The stream of bytes
  7930. acts on a single virtual global symbol, adding and removing characters
  7931. and signalling complete symbol points.  Here, we read the stream and
  7932. create symbols at the completion points.
  7933.  
  7934.    First, there's a control byte `m'.  If any of the listed bits in `m'
  7935. is nonzero, we execute what stands at the right, in the listed order:
  7936.  
  7937.       (MMO3_LEFT)
  7938.       0x40 - Traverse left trie.
  7939.              (Read a new command byte and recurse.)
  7940.  
  7941.       (MMO3_SYMBITS)
  7942.       0x2f - Read the next byte as a character and store it in the
  7943.              current character position; increment character position.
  7944.              Test the bits of `m':
  7945.  
  7946.              (MMO3_WCHAR)
  7947.              0x80 - The character is 16-bit (so read another byte,
  7948.                     merge into current character.
  7949.  
  7950.              (MMO3_TYPEBITS)
  7951.              0xf  - We have a complete symbol; parse the type, value
  7952.                     and serial number and do what should be done
  7953.                     with a symbol.  The type and length information
  7954.                     is in j = (m & 0xf).
  7955.  
  7956.                     (MMO3_REGQUAL_BITS)
  7957.                     j == 0xf: A register variable.  The following
  7958.                               byte tells which register.
  7959.                     j <= 8:   An absolute symbol.  Read j bytes as the
  7960.                               big-endian number the symbol equals.
  7961.                               A j = 2 with two zero bytes denotes an
  7962.                               unknown symbol.
  7963.                     j > 8:    As with j <= 8, but add (0x20 << 56)
  7964.                               to the value in the following j - 8
  7965.                               bytes.
  7966.  
  7967.                     Then comes the serial number, as a variant of
  7968.                     uleb128, but better named ubeb128:
  7969.                     Read bytes and shift the previous value left 7
  7970.                     (multiply by 128).  Add in the new byte, repeat
  7971.                     until a byte has bit 7 set.  The serial number
  7972.                     is the computed value minus 128.
  7973.  
  7974.              (MMO3_MIDDLE)
  7975.              0x20 - Traverse middle trie.  (Read a new command byte
  7976.                     and recurse.)  Decrement character position.
  7977.  
  7978.       (MMO3_RIGHT)
  7979.       0x10 - Traverse right trie.  (Read a new command byte and
  7980.              recurse.)
  7981.  
  7982.    Let's look again at the `lop_stab' for the trivial file (*note File
  7983. layout::).
  7984.  
  7985.       0x980b0000 - lop_stab for ":Main" = 0, serial 1.
  7986.       0x203a4040
  7987.       0x10404020
  7988.       0x4d206120
  7989.       0x69016e00
  7990.       0x81000000
  7991.  
  7992.    This forms the trivial trie (note that the path between ":" and "M"
  7993. is redundant):
  7994.  
  7995.       203a     ":"
  7996.       40       /
  7997.       40      /
  7998.       10      \
  7999.       40      /
  8000.       40     /
  8001.       204d  "M"
  8002.       2061  "a"
  8003.       2069  "i"
  8004.       016e  "n" is the last character in a full symbol, and
  8005.             with a value represented in one byte.
  8006.       00    The value is 0.
  8007.       81    The serial number is 1.
  8008.  
  8009. 
  8010. File: bfd.info,  Node: mmo section mapping,  Prev: Symbol-table,  Up: mmo
  8011.  
  8012. 3.4.3 mmo section mapping
  8013. -------------------------
  8014.  
  8015. The implementation in BFD uses special data type 80 (decimal) to
  8016. encapsulate and describe named sections, containing e.g. debug
  8017. information.  If needed, any datum in the encapsulation will be quoted
  8018. using lop_quote.  First comes a 32-bit word holding the number of
  8019. 32-bit words containing the zero-terminated zero-padded segment name.
  8020. After the name there's a 32-bit word holding flags describing the
  8021. section type.  Then comes a 64-bit big-endian word with the section
  8022. length (in bytes), then another with the section start address.
  8023. Depending on the type of section, the contents might follow,
  8024. zero-padded to 32-bit boundary.  For a loadable section (such as data
  8025. or code), the contents might follow at some later point, not
  8026. necessarily immediately, as a lop_loc with the same start address as in
  8027. the section description, followed by the contents.  This in effect
  8028. forms a descriptor that must be emitted before the actual contents.
  8029. Sections described this way must not overlap.
  8030.  
  8031.    For areas that don't have such descriptors, synthetic sections are
  8032. formed by BFD.  Consecutive contents in the two memory areas
  8033. `0x0000...00' to `0x01ff...ff' and `0x2000...00' to `0x20ff...ff' are
  8034. entered in sections named `.text' and `.data' respectively.  If an area
  8035. is not otherwise described, but would together with a neighboring lower
  8036. area be less than `0x40000000' bytes long, it is joined with the lower
  8037. area and the gap is zero-filled.  For other cases, a new section is
  8038. formed, named `.MMIX.sec.N'.  Here, N is a number, a running count
  8039. through the mmo file, starting at 0.
  8040.  
  8041.    A loadable section specified as:
  8042.  
  8043.       .section secname,"ax"
  8044.       TETRA 1,2,3,4,-1,-2009
  8045.       BYTE 80
  8046.  
  8047.    and linked to address `0x4', is represented by the sequence:
  8048.  
  8049.       0x98080050 - lop_spec 80
  8050.       0x00000002 - two 32-bit words for the section name
  8051.       0x7365636e - "secn"
  8052.       0x616d6500 - "ame\0"
  8053.       0x00000033 - flags CODE, READONLY, LOAD, ALLOC
  8054.       0x00000000 - high 32 bits of section length
  8055.       0x0000001c - section length is 28 bytes; 6 * 4 + 1 + alignment to 32 bits
  8056.       0x00000000 - high 32 bits of section address
  8057.       0x00000004 - section address is 4
  8058.       0x98010002 - 64 bits with address of following data
  8059.       0x00000000 - high 32 bits of address
  8060.       0x00000004 - low 32 bits: data starts at address 4
  8061.       0x00000001 - 1
  8062.       0x00000002 - 2
  8063.       0x00000003 - 3
  8064.       0x00000004 - 4
  8065.       0xffffffff - -1
  8066.       0xfffff827 - -2009
  8067.       0x50000000 - 80 as a byte, padded with zeros.
  8068.  
  8069.    Note that the lop_spec wrapping does not include the section
  8070. contents.  Compare this to a non-loaded section specified as:
  8071.  
  8072.       .section thirdsec
  8073.       TETRA 200001,100002
  8074.       BYTE 38,40
  8075.  
  8076.    This, when linked to address `0x200000000000001c', is represented by:
  8077.  
  8078.       0x98080050 - lop_spec 80
  8079.       0x00000002 - two 32-bit words for the section name
  8080.       0x7365636e - "thir"
  8081.       0x616d6500 - "dsec"
  8082.       0x00000010 - flag READONLY
  8083.       0x00000000 - high 32 bits of section length
  8084.       0x0000000c - section length is 12 bytes; 2 * 4 + 2 + alignment to 32 bits
  8085.       0x20000000 - high 32 bits of address
  8086.       0x0000001c - low 32 bits of address 0x200000000000001c
  8087.       0x00030d41 - 200001
  8088.       0x000186a2 - 100002
  8089.       0x26280000 - 38, 40 as bytes, padded with zeros
  8090.  
  8091.    For the latter example, the section contents must not be loaded in
  8092. memory, and is therefore specified as part of the special data.  The
  8093. address is usually unimportant but might provide information for e.g.
  8094. the DWARF 2 debugging format.
  8095.  
  8096. 
  8097. File: bfd.info,  Node: GNU Free Documentation License,  Next: Index,  Prev: BFD back ends,  Up: Top
  8098.  
  8099. Appendix A GNU Free Documentation License
  8100. *****************************************
  8101.  
  8102.                         Version 1.1, March 2000
  8103.  
  8104.      Copyright (C) 2000, 2003 Free Software Foundation, Inc.
  8105.      59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  8106.  
  8107.      Everyone is permitted to copy and distribute verbatim copies
  8108.      of this license document, but changing it is not allowed.
  8109.  
  8110.  
  8111.   0. PREAMBLE
  8112.  
  8113.      The purpose of this License is to make a manual, textbook, or other
  8114.      written document "free" in the sense of freedom: to assure everyone
  8115.      the effective freedom to copy and redistribute it, with or without
  8116.      modifying it, either commercially or noncommercially.  Secondarily,
  8117.      this License preserves for the author and publisher a way to get
  8118.      credit for their work, while not being considered responsible for
  8119.      modifications made by others.
  8120.  
  8121.      This License is a kind of "copyleft", which means that derivative
  8122.      works of the document must themselves be free in the same sense.
  8123.      It complements the GNU General Public License, which is a copyleft
  8124.      license designed for free software.
  8125.  
  8126.      We have designed this License in order to use it for manuals for
  8127.      free software, because free software needs free documentation: a
  8128.      free program should come with manuals providing the same freedoms
  8129.      that the software does.  But this License is not limited to
  8130.      software manuals; it can be used for any textual work, regardless
  8131.      of subject matter or whether it is published as a printed book.
  8132.      We recommend this License principally for works whose purpose is
  8133.      instruction or reference.
  8134.  
  8135.  
  8136.   1. APPLICABILITY AND DEFINITIONS
  8137.  
  8138.      This License applies to any manual or other work that contains a
  8139.      notice placed by the copyright holder saying it can be distributed
  8140.      under the terms of this License.  The "Document", below, refers to
  8141.      any such manual or work.  Any member of the public is a licensee,
  8142.      and is addressed as "you."
  8143.  
  8144.      A "Modified Version" of the Document means any work containing the
  8145.      Document or a portion of it, either copied verbatim, or with
  8146.      modifications and/or translated into another language.
  8147.  
  8148.      A "Secondary Section" is a named appendix or a front-matter
  8149.      section of the Document that deals exclusively with the
  8150.      relationship of the publishers or authors of the Document to the
  8151.      Document's overall subject (or to related matters) and contains
  8152.      nothing that could fall directly within that overall subject.
  8153.      (For example, if the Document is in part a textbook of
  8154.      mathematics, a Secondary Section may not explain any mathematics.)
  8155.      The relationship could be a matter of historical connection with
  8156.      the subject or with related matters, or of legal, commercial,
  8157.      philosophical, ethical or political position regarding them.
  8158.  
  8159.      The "Invariant Sections" are certain Secondary Sections whose
  8160.      titles are designated, as being those of Invariant Sections, in
  8161.      the notice that says that the Document is released under this
  8162.      License.
  8163.  
  8164.      The "Cover Texts" are certain short passages of text that are
  8165.      listed, as Front-Cover Texts or Back-Cover Texts, in the notice
  8166.      that says that the Document is released under this License.
  8167.  
  8168.      A "Transparent" copy of the Document means a machine-readable copy,
  8169.      represented in a format whose specification is available to the
  8170.      general public, whose contents can be viewed and edited directly
  8171.      and straightforwardly with generic text editors or (for images
  8172.      composed of pixels) generic paint programs or (for drawings) some
  8173.      widely available drawing editor, and that is suitable for input to
  8174.      text formatters or for automatic translation to a variety of
  8175.      formats suitable for input to text formatters.  A copy made in an
  8176.      otherwise Transparent file format whose markup has been designed
  8177.      to thwart or discourage subsequent modification by readers is not
  8178.      Transparent.  A copy that is not "Transparent" is called "Opaque."
  8179.  
  8180.      Examples of suitable formats for Transparent copies include plain
  8181.      ASCII without markup, Texinfo input format, LaTeX input format,
  8182.      SGML or XML using a publicly available DTD, and
  8183.      standard-conforming simple HTML designed for human modification.
  8184.      Opaque formats include PostScript, PDF, proprietary formats that
  8185.      can be read and edited only by proprietary word processors, SGML
  8186.      or XML for which the DTD and/or processing tools are not generally
  8187.      available, and the machine-generated HTML produced by some word
  8188.      processors for output purposes only.
  8189.  
  8190.      The "Title Page" means, for a printed book, the title page itself,
  8191.      plus such following pages as are needed to hold, legibly, the
  8192.      material this License requires to appear in the title page.  For
  8193.      works in formats which do not have any title page as such, "Title
  8194.      Page" means the text near the most prominent appearance of the
  8195.      work's title, preceding the beginning of the body of the text.
  8196.  
  8197.   2. VERBATIM COPYING
  8198.  
  8199.      You may copy and distribute the Document in any medium, either
  8200.      commercially or noncommercially, provided that this License, the
  8201.      copyright notices, and the license notice saying this License
  8202.      applies to the Document are reproduced in all copies, and that you
  8203.      add no other conditions whatsoever to those of this License.  You
  8204.      may not use technical measures to obstruct or control the reading
  8205.      or further copying of the copies you make or distribute.  However,
  8206.      you may accept compensation in exchange for copies.  If you
  8207.      distribute a large enough number of copies you must also follow
  8208.      the conditions in section 3.
  8209.  
  8210.      You may also lend copies, under the same conditions stated above,
  8211.      and you may publicly display copies.
  8212.  
  8213.   3. COPYING IN QUANTITY
  8214.  
  8215.      If you publish printed copies of the Document numbering more than
  8216.      100, and the Document's license notice requires Cover Texts, you
  8217.      must enclose the copies in covers that carry, clearly and legibly,
  8218.      all these Cover Texts: Front-Cover Texts on the front cover, and
  8219.      Back-Cover Texts on the back cover.  Both covers must also clearly
  8220.      and legibly identify you as the publisher of these copies.  The
  8221.      front cover must present the full title with all words of the
  8222.      title equally prominent and visible.  You may add other material
  8223.      on the covers in addition.  Copying with changes limited to the
  8224.      covers, as long as they preserve the title of the Document and
  8225.      satisfy these conditions, can be treated as verbatim copying in
  8226.      other respects.
  8227.  
  8228.      If the required texts for either cover are too voluminous to fit
  8229.      legibly, you should put the first ones listed (as many as fit
  8230.      reasonably) on the actual cover, and continue the rest onto
  8231.      adjacent pages.
  8232.  
  8233.      If you publish or distribute Opaque copies of the Document
  8234.      numbering more than 100, you must either include a
  8235.      machine-readable Transparent copy along with each Opaque copy, or
  8236.      state in or with each Opaque copy a publicly-accessible
  8237.      computer-network location containing a complete Transparent copy
  8238.      of the Document, free of added material, which the general
  8239.      network-using public has access to download anonymously at no
  8240.      charge using public-standard network protocols.  If you use the
  8241.      latter option, you must take reasonably prudent steps, when you
  8242.      begin distribution of Opaque copies in quantity, to ensure that
  8243.      this Transparent copy will remain thus accessible at the stated
  8244.      location until at least one year after the last time you
  8245.      distribute an Opaque copy (directly or through your agents or
  8246.      retailers) of that edition to the public.
  8247.  
  8248.      It is requested, but not required, that you contact the authors of
  8249.      the Document well before redistributing any large number of
  8250.      copies, to give them a chance to provide you with an updated
  8251.      version of the Document.
  8252.  
  8253.   4. MODIFICATIONS
  8254.  
  8255.      You may copy and distribute a Modified Version of the Document
  8256.      under the conditions of sections 2 and 3 above, provided that you
  8257.      release the Modified Version under precisely this License, with
  8258.      the Modified Version filling the role of the Document, thus
  8259.      licensing distribution and modification of the Modified Version to
  8260.      whoever possesses a copy of it.  In addition, you must do these
  8261.      things in the Modified Version:
  8262.  
  8263.      A. Use in the Title Page (and on the covers, if any) a title
  8264.      distinct    from that of the Document, and from those of previous
  8265.      versions    (which should, if there were any, be listed in the
  8266.      History section    of the Document).  You may use the same title
  8267.      as a previous version    if the original publisher of that version
  8268.      gives permission.
  8269.      B. List on the Title Page, as authors, one or more persons or
  8270.      entities    responsible for authorship of the modifications in the
  8271.      Modified    Version, together with at least five of the principal
  8272.      authors of the    Document (all of its principal authors, if it
  8273.      has less than five).
  8274.      C. State on the Title page the name of the publisher of the
  8275.      Modified Version, as the publisher.
  8276.      D. Preserve all the copyright notices of the Document.
  8277.      E. Add an appropriate copyright notice for your modifications
  8278.      adjacent to the other copyright notices.
  8279.      F. Include, immediately after the copyright notices, a license
  8280.      notice    giving the public permission to use the Modified Version
  8281.      under the    terms of this License, in the form shown in the
  8282.      Addendum below.
  8283.      G. Preserve in that license notice the full lists of Invariant
  8284.      Sections    and required Cover Texts given in the Document's
  8285.      license notice.
  8286.      H. Include an unaltered copy of this License.
  8287.      I. Preserve the section entitled "History", and its title, and add
  8288.      to    it an item stating at least the title, year, new authors, and
  8289.        publisher of the Modified Version as given on the Title Page.
  8290.      If    there is no section entitled "History" in the Document,
  8291.      create one    stating the title, year, authors, and publisher of
  8292.      the Document as    given on its Title Page, then add an item
  8293.      describing the Modified    Version as stated in the previous
  8294.      sentence.
  8295.      J. Preserve the network location, if any, given in the Document for
  8296.        public access to a Transparent copy of the Document, and
  8297.      likewise    the network locations given in the Document for
  8298.      previous versions    it was based on.  These may be placed in the
  8299.      "History" section.     You may omit a network location for a work
  8300.      that was published at    least four years before the Document
  8301.      itself, or if the original    publisher of the version it refers
  8302.      to gives permission.
  8303.      K. In any section entitled "Acknowledgements" or "Dedications",
  8304.      preserve the section's title, and preserve in the section all the
  8305.       substance and tone of each of the contributor acknowledgements
  8306.      and/or dedications given therein.
  8307.      L. Preserve all the Invariant Sections of the Document,
  8308.      unaltered in their text and in their titles.  Section numbers
  8309.      or the equivalent are not considered part of the section titles.
  8310.      M. Delete any section entitled "Endorsements."  Such a section
  8311.      may not be included in the Modified Version.
  8312.      N. Do not retitle any existing section as "Endorsements"    or to
  8313.      conflict in title with any Invariant Section.
  8314.  
  8315.      If the Modified Version includes new front-matter sections or
  8316.      appendices that qualify as Secondary Sections and contain no
  8317.      material copied from the Document, you may at your option
  8318.      designate some or all of these sections as invariant.  To do this,
  8319.      add their titles to the list of Invariant Sections in the Modified
  8320.      Version's license notice.  These titles must be distinct from any
  8321.      other section titles.
  8322.  
  8323.      You may add a section entitled "Endorsements", provided it contains
  8324.      nothing but endorsements of your Modified Version by various
  8325.      parties-for example, statements of peer review or that the text has
  8326.      been approved by an organization as the authoritative definition
  8327.      of a standard.
  8328.  
  8329.      You may add a passage of up to five words as a Front-Cover Text,
  8330.      and a passage of up to 25 words as a Back-Cover Text, to the end
  8331.      of the list of Cover Texts in the Modified Version.  Only one
  8332.      passage of Front-Cover Text and one of Back-Cover Text may be
  8333.      added by (or through arrangements made by) any one entity.  If the
  8334.      Document already includes a cover text for the same cover,
  8335.      previously added by you or by arrangement made by the same entity
  8336.      you are acting on behalf of, you may not add another; but you may
  8337.      replace the old one, on explicit permission from the previous
  8338.      publisher that added the old one.
  8339.  
  8340.      The author(s) and publisher(s) of the Document do not by this
  8341.      License give permission to use their names for publicity for or to
  8342.      assert or imply endorsement of any Modified Version.
  8343.  
  8344.   5. COMBINING DOCUMENTS
  8345.  
  8346.      You may combine the Document with other documents released under
  8347.      this License, under the terms defined in section 4 above for
  8348.      modified versions, provided that you include in the combination
  8349.      all of the Invariant Sections of all of the original documents,
  8350.      unmodified, and list them all as Invariant Sections of your
  8351.      combined work in its license notice.
  8352.  
  8353.      The combined work need only contain one copy of this License, and
  8354.      multiple identical Invariant Sections may be replaced with a single
  8355.      copy.  If there are multiple Invariant Sections with the same name
  8356.      but different contents, make the title of each such section unique
  8357.      by adding at the end of it, in parentheses, the name of the
  8358.      original author or publisher of that section if known, or else a
  8359.      unique number.  Make the same adjustment to the section titles in
  8360.      the list of Invariant Sections in the license notice of the
  8361.      combined work.
  8362.  
  8363.      In the combination, you must combine any sections entitled
  8364.      "History" in the various original documents, forming one section
  8365.      entitled "History"; likewise combine any sections entitled
  8366.      "Acknowledgements", and any sections entitled "Dedications."  You
  8367.      must delete all sections entitled "Endorsements."
  8368.  
  8369.   6. COLLECTIONS OF DOCUMENTS
  8370.  
  8371.      You may make a collection consisting of the Document and other
  8372.      documents released under this License, and replace the individual
  8373.      copies of this License in the various documents with a single copy
  8374.      that is included in the collection, provided that you follow the
  8375.      rules of this License for verbatim copying of each of the
  8376.      documents in all other respects.
  8377.  
  8378.      You may extract a single document from such a collection, and
  8379.      distribute it individually under this License, provided you insert
  8380.      a copy of this License into the extracted document, and follow
  8381.      this License in all other respects regarding verbatim copying of
  8382.      that document.
  8383.  
  8384.   7. AGGREGATION WITH INDEPENDENT WORKS
  8385.  
  8386.      A compilation of the Document or its derivatives with other
  8387.      separate and independent documents or works, in or on a volume of
  8388.      a storage or distribution medium, does not as a whole count as a
  8389.      Modified Version of the Document, provided no compilation
  8390.      copyright is claimed for the compilation.  Such a compilation is
  8391.      called an "aggregate", and this License does not apply to the
  8392.      other self-contained works thus compiled with the Document, on
  8393.      account of their being thus compiled, if they are not themselves
  8394.      derivative works of the Document.
  8395.  
  8396.      If the Cover Text requirement of section 3 is applicable to these
  8397.      copies of the Document, then if the Document is less than one
  8398.      quarter of the entire aggregate, the Document's Cover Texts may be
  8399.      placed on covers that surround only the Document within the
  8400.      aggregate.  Otherwise they must appear on covers around the whole
  8401.      aggregate.
  8402.  
  8403.   8. TRANSLATION
  8404.  
  8405.      Translation is considered a kind of modification, so you may
  8406.      distribute translations of the Document under the terms of section
  8407.      4.  Replacing Invariant Sections with translations requires special
  8408.      permission from their copyright holders, but you may include
  8409.      translations of some or all Invariant Sections in addition to the
  8410.      original versions of these Invariant Sections.  You may include a
  8411.      translation of this License provided that you also include the
  8412.      original English version of this License.  In case of a
  8413.      disagreement between the translation and the original English
  8414.      version of this License, the original English version will prevail.
  8415.  
  8416.   9. TERMINATION
  8417.  
  8418.      You may not copy, modify, sublicense, or distribute the Document
  8419.      except as expressly provided for under this License.  Any other
  8420.      attempt to copy, modify, sublicense or distribute the Document is
  8421.      void, and will automatically terminate your rights under this
  8422.      License.  However, parties who have received copies, or rights,
  8423.      from you under this License will not have their licenses
  8424.      terminated so long as such parties remain in full compliance.
  8425.  
  8426.  10. FUTURE REVISIONS OF THIS LICENSE
  8427.  
  8428.      The Free Software Foundation may publish new, revised versions of
  8429.      the GNU Free Documentation License from time to time.  Such new
  8430.      versions will be similar in spirit to the present version, but may
  8431.      differ in detail to address new problems or concerns.  See
  8432.      http://www.gnu.org/copyleft/.
  8433.  
  8434.      Each version of the License is given a distinguishing version
  8435.      number.  If the Document specifies that a particular numbered
  8436.      version of this License "or any later version" applies to it, you
  8437.      have the option of following the terms and conditions either of
  8438.      that specified version or of any later version that has been
  8439.      published (not as a draft) by the Free Software Foundation.  If
  8440.      the Document does not specify a version number of this License,
  8441.      you may choose any version ever published (not as a draft) by the
  8442.      Free Software Foundation.
  8443.  
  8444.  
  8445. ADDENDUM: How to use this License for your documents
  8446. ====================================================
  8447.  
  8448. To use this License in a document you have written, include a copy of
  8449. the License in the document and put the following copyright and license
  8450. notices just after the title page:
  8451.  
  8452.      Copyright (C)  YEAR  YOUR NAME.
  8453.      Permission is granted to copy, distribute and/or modify this document
  8454.      under the terms of the GNU Free Documentation License, Version 1.1
  8455.      or any later version published by the Free Software Foundation;
  8456.      with the Invariant Sections being LIST THEIR TITLES, with the
  8457.      Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST.
  8458.      A copy of the license is included in the section entitled "GNU
  8459.      Free Documentation License."
  8460.  
  8461.    If you have no Invariant Sections, write "with no Invariant Sections"
  8462. instead of saying which ones are invariant.  If you have no Front-Cover
  8463. Texts, write "no Front-Cover Texts" instead of "Front-Cover Texts being
  8464. LIST"; likewise for Back-Cover Texts.
  8465.  
  8466.    If your document contains nontrivial examples of program code, we
  8467. recommend releasing these examples in parallel under your choice of
  8468. free software license, such as the GNU General Public License, to
  8469. permit their use in free software.
  8470.  
  8471. 
  8472. File: bfd.info,  Node: Index,  Prev: GNU Free Documentation License,  Up: Top
  8473.  
  8474. Index
  8475. *****
  8476.  
  8477. [index]
  8478. * Menu:
  8479.  
  8480. * _bfd_final_link_relocate:              Relocating the section contents.
  8481.                                                              (line   22)
  8482. * _bfd_generic_link_add_archive_symbols: Adding symbols from an archive.
  8483.                                                              (line   12)
  8484. * _bfd_generic_link_add_one_symbol:      Adding symbols from an object file.
  8485.                                                              (line   19)
  8486. * _bfd_generic_make_empty_symbol:        symbol handling functions.
  8487.                                                              (line   92)
  8488. * _bfd_link_add_symbols in target vector: Adding Symbols to the Hash Table.
  8489.                                                              (line    6)
  8490. * _bfd_link_final_link in target vector: Performing the Final Link.
  8491.                                                              (line    6)
  8492. * _bfd_link_hash_table_create in target vector: Creating a Linker Hash Table.
  8493.                                                              (line    6)
  8494. * _bfd_relocate_contents:                Relocating the section contents.
  8495.                                                              (line   22)
  8496. * _bfd_strip_section_from_output:        section prototypes. (line  242)
  8497. * aout_SIZE_machine_type:                aout.               (line  146)
  8498. * aout_SIZE_mkobject:                    aout.               (line  138)
  8499. * aout_SIZE_new_section_hook:            aout.               (line  175)
  8500. * aout_SIZE_set_arch_mach:               aout.               (line  162)
  8501. * aout_SIZE_some_aout_object_p:          aout.               (line  125)
  8502. * aout_SIZE_swap_exec_header_in:         aout.               (line  101)
  8503. * aout_SIZE_swap_exec_header_out:        aout.               (line  113)
  8504. * arelent_chain:                         typedef arelent.    (line  338)
  8505. * BFD:                                   Overview.           (line    6)
  8506. * BFD canonical format:                  Canonical format.   (line   11)
  8507. * bfd_alloc:                             Opening and Closing.
  8508.                                                              (line  179)
  8509. * bfd_alt_mach_code:                     BFD front end.      (line  588)
  8510. * bfd_arch_bits_per_address:             Architectures.      (line  453)
  8511. * bfd_arch_bits_per_byte:                Architectures.      (line  445)
  8512. * bfd_arch_get_compatible:               Architectures.      (line  388)
  8513. * bfd_arch_list:                         Architectures.      (line  379)
  8514. * bfd_arch_mach_octets_per_byte:         Architectures.      (line  522)
  8515. * bfd_cache_close:                       File Caching.       (line   53)
  8516. * bfd_cache_close_all:                   File Caching.       (line   66)
  8517. * bfd_cache_init:                        File Caching.       (line   45)
  8518. * bfd_cache_lookup:                      File Caching.       (line   32)
  8519. * bfd_cache_lookup_worker:               File Caching.       (line   91)
  8520. * BFD_CACHE_MAX_OPEN macro:              File Caching.       (line   15)
  8521. * bfd_calc_gnu_debuglink_crc32:          Opening and Closing.
  8522.                                                              (line  197)
  8523. * bfd_canonicalize_reloc:                BFD front end.      (line  315)
  8524. * bfd_canonicalize_symtab:               symbol handling functions.
  8525.                                                              (line   50)
  8526. * bfd_check_format:                      Formats.            (line   18)
  8527. * bfd_check_format_matches:              Formats.            (line   49)
  8528. * bfd_check_overflow:                    typedef arelent.    (line  350)
  8529. * bfd_close:                             Opening and Closing.
  8530.                                                              (line  104)
  8531. * bfd_close_all_done:                    Opening and Closing.
  8532.                                                              (line  122)
  8533. * bfd_coff_backend_data:                 coff.               (line  246)
  8534. * bfd_copy_private_bfd_data:             BFD front end.      (line  454)
  8535. * bfd_copy_private_header_data:          BFD front end.      (line  436)
  8536. * bfd_copy_private_section_data:         section prototypes. (line  224)
  8537. * bfd_copy_private_symbol_data:          symbol handling functions.
  8538.                                                              (line  140)
  8539. * bfd_core_file_failing_command:         Core Files.         (line    9)
  8540. * bfd_core_file_failing_signal:          Core Files.         (line   18)
  8541. * bfd_create:                            Opening and Closing.
  8542.                                                              (line  141)
  8543. * bfd_create_gnu_debuglink_section:      Opening and Closing.
  8544.                                                              (line  263)
  8545. * bfd_decode_symclass:                   symbol handling functions.
  8546.                                                              (line  111)
  8547. * bfd_default_arch_struct:               Architectures.      (line  400)
  8548. * bfd_default_compatible:                Architectures.      (line  462)
  8549. * bfd_default_reloc_type_lookup:         howto manager.      (line 1704)
  8550. * bfd_default_scan:                      Architectures.      (line  471)
  8551. * bfd_default_set_arch_mach:             Architectures.      (line  418)
  8552. * bfd_elf_find_section:                  elf.                (line   15)
  8553. * bfd_errmsg:                            BFD front end.      (line  243)
  8554. * bfd_fdopenr:                           Opening and Closing.
  8555.                                                              (line   22)
  8556. * bfd_fill_in_gnu_debuglink_section:     Opening and Closing.
  8557.                                                              (line  277)
  8558. * bfd_find_target:                       bfd_target.         (line  420)
  8559. * bfd_follow_gnu_debuglink:              Opening and Closing.
  8560.                                                              (line  242)
  8561. * bfd_format_string:                     Formats.            (line   76)
  8562. * bfd_generic_discard_group:             section prototypes. (line  264)
  8563. * bfd_generic_gc_sections:               howto manager.      (line 1735)
  8564. * bfd_generic_get_relocated_section_contents: howto manager. (line 1755)
  8565. * bfd_generic_is_group_section:          section prototypes. (line  256)
  8566. * bfd_generic_merge_sections:            howto manager.      (line 1745)
  8567. * bfd_generic_relax_section:             howto manager.      (line 1722)
  8568. * bfd_get_arch:                          Architectures.      (line  429)
  8569. * bfd_get_arch_info:                     Architectures.      (line  481)
  8570. * bfd_get_arch_size:                     BFD front end.      (line  359)
  8571. * bfd_get_error:                         BFD front end.      (line  226)
  8572. * bfd_get_error_handler:                 BFD front end.      (line  294)
  8573. * bfd_get_gp_size:                       BFD front end.      (line  400)
  8574. * bfd_get_mach:                          Architectures.      (line  437)
  8575. * bfd_get_mtime:                         BFD front end.      (line  676)
  8576. * bfd_get_next_mapent:                   Archives.           (line   49)
  8577. * bfd_get_reloc_code_name:               howto manager.      (line 1713)
  8578. * bfd_get_reloc_size:                    typedef arelent.    (line  329)
  8579. * bfd_get_reloc_upper_bound:             BFD front end.      (line  305)
  8580. * bfd_get_section_by_name:               section prototypes. (line   17)
  8581. * bfd_get_section_by_name_if:            section prototypes. (line   31)
  8582. * bfd_get_section_contents:              section prototypes. (line  197)
  8583. * bfd_get_sign_extend_vma:               BFD front end.      (line  372)
  8584. * bfd_get_size <1>:                      Internal.           (line   22)
  8585. * bfd_get_size:                          BFD front end.      (line  685)
  8586. * bfd_get_symtab_upper_bound:            symbol handling functions.
  8587.                                                              (line    6)
  8588. * bfd_get_unique_section_name:           section prototypes. (line   50)
  8589. * bfd_h_put_size:                        Internal.           (line   94)
  8590. * bfd_hash_allocate:                     Creating and Freeing a Hash Table.
  8591.                                                              (line   17)
  8592. * bfd_hash_lookup:                       Looking Up or Entering a String.
  8593.                                                              (line    6)
  8594. * bfd_hash_newfunc:                      Creating and Freeing a Hash Table.
  8595.                                                              (line   12)
  8596. * bfd_hash_set_default_size:             Creating and Freeing a Hash Table.
  8597.                                                              (line   25)
  8598. * bfd_hash_table_free:                   Creating and Freeing a Hash Table.
  8599.                                                              (line   21)
  8600. * bfd_hash_table_init:                   Creating and Freeing a Hash Table.
  8601.                                                              (line    6)
  8602. * bfd_hash_table_init_n:                 Creating and Freeing a Hash Table.
  8603.                                                              (line    6)
  8604. * bfd_hash_traverse:                     Traversing a Hash Table.
  8605.                                                              (line    6)
  8606. * bfd_init:                              Initialization.     (line    8)
  8607. * bfd_install_relocation:                typedef arelent.    (line  391)
  8608. * bfd_is_local_label:                    symbol handling functions.
  8609.                                                              (line   17)
  8610. * bfd_is_local_label_name:               symbol handling functions.
  8611.                                                              (line   26)
  8612. * bfd_is_target_special_symbol:          symbol handling functions.
  8613.                                                              (line   38)
  8614. * bfd_is_undefined_symclass:             symbol handling functions.
  8615.                                                              (line  120)
  8616. * bfd_last_cache:                        File Caching.       (line   22)
  8617. * bfd_link_split_section:                Writing the symbol table.
  8618.                                                              (line   44)
  8619. * bfd_log2:                              Internal.           (line  161)
  8620. * bfd_lookup_arch:                       Architectures.      (line  489)
  8621. * bfd_make_debug_symbol:                 symbol handling functions.
  8622.                                                              (line  102)
  8623. * bfd_make_empty_symbol:                 symbol handling functions.
  8624.                                                              (line   78)
  8625. * bfd_make_readable:                     Opening and Closing.
  8626.                                                              (line  165)
  8627. * bfd_make_section:                      section prototypes. (line   98)
  8628. * bfd_make_section_anyway:               section prototypes. (line   82)
  8629. * bfd_make_section_old_way:              section prototypes. (line   62)
  8630. * bfd_make_writable:                     Opening and Closing.
  8631.                                                              (line  151)
  8632. * bfd_malloc_and_get_section:            section prototypes. (line  214)
  8633. * bfd_map_over_sections:                 section prototypes. (line  124)
  8634. * bfd_merge_private_bfd_data:            BFD front end.      (line  470)
  8635. * bfd_octets_per_byte:                   Architectures.      (line  512)
  8636. * bfd_open_file:                         File Caching.       (line   79)
  8637. * bfd_openr:                             Opening and Closing.
  8638.                                                              (line    6)
  8639. * bfd_openr_iovec:                       Opening and Closing.
  8640.                                                              (line   52)
  8641. * bfd_openr_next_archived_file:          Archives.           (line   75)
  8642. * bfd_openstreamr:                       Opening and Closing.
  8643.                                                              (line   43)
  8644. * bfd_openw:                             Opening and Closing.
  8645.                                                              (line   92)
  8646. * bfd_perform_relocation:                typedef arelent.    (line  366)
  8647. * bfd_perror:                            BFD front end.      (line  252)
  8648. * bfd_preserve_finish:                   BFD front end.      (line  636)
  8649. * bfd_preserve_restore:                  BFD front end.      (line  626)
  8650. * bfd_preserve_save:                     BFD front end.      (line  610)
  8651. * bfd_print_symbol_vandf:                symbol handling functions.
  8652.                                                              (line   70)
  8653. * bfd_printable_arch_mach:               Architectures.      (line  500)
  8654. * bfd_printable_name:                    Architectures.      (line  360)
  8655. * bfd_put_size:                          Internal.           (line   19)
  8656. * BFD_RELOC_12_PCREL:                    howto manager.      (line   39)
  8657. * BFD_RELOC_14:                          howto manager.      (line   31)
  8658. * BFD_RELOC_16:                          howto manager.      (line   30)
  8659. * BFD_RELOC_16_BASEREL:                  howto manager.      (line   80)
  8660. * BFD_RELOC_16_GOT_PCREL:                howto manager.      (line   52)
  8661. * BFD_RELOC_16_GOTOFF:                   howto manager.      (line   55)
  8662. * BFD_RELOC_16_PCREL:                    howto manager.      (line   38)
  8663. * BFD_RELOC_16_PCREL_S2:                 howto manager.      (line   92)
  8664. * BFD_RELOC_16_PLT_PCREL:                howto manager.      (line   63)
  8665. * BFD_RELOC_16_PLTOFF:                   howto manager.      (line   67)
  8666. * BFD_RELOC_16C_ABS20:                   howto manager.      (line 1464)
  8667. * BFD_RELOC_16C_ABS20_C:                 howto manager.      (line 1465)
  8668. * BFD_RELOC_16C_ABS24:                   howto manager.      (line 1466)
  8669. * BFD_RELOC_16C_ABS24_C:                 howto manager.      (line 1467)
  8670. * BFD_RELOC_16C_DISP04:                  howto manager.      (line 1444)
  8671. * BFD_RELOC_16C_DISP04_C:                howto manager.      (line 1445)
  8672. * BFD_RELOC_16C_DISP08:                  howto manager.      (line 1446)
  8673. * BFD_RELOC_16C_DISP08_C:                howto manager.      (line 1447)
  8674. * BFD_RELOC_16C_DISP16:                  howto manager.      (line 1448)
  8675. * BFD_RELOC_16C_DISP16_C:                howto manager.      (line 1449)
  8676. * BFD_RELOC_16C_DISP24:                  howto manager.      (line 1450)
  8677. * BFD_RELOC_16C_DISP24_C:                howto manager.      (line 1451)
  8678. * BFD_RELOC_16C_DISP24a:                 howto manager.      (line 1452)
  8679. * BFD_RELOC_16C_DISP24a_C:               howto manager.      (line 1453)
  8680. * BFD_RELOC_16C_IMM04:                   howto manager.      (line 1468)
  8681. * BFD_RELOC_16C_IMM04_C:                 howto manager.      (line 1469)
  8682. * BFD_RELOC_16C_IMM16:                   howto manager.      (line 1470)
  8683. * BFD_RELOC_16C_IMM16_C:                 howto manager.      (line 1471)
  8684. * BFD_RELOC_16C_IMM20:                   howto manager.      (line 1472)
  8685. * BFD_RELOC_16C_IMM20_C:                 howto manager.      (line 1473)
  8686. * BFD_RELOC_16C_IMM24:                   howto manager.      (line 1474)
  8687. * BFD_RELOC_16C_IMM24_C:                 howto manager.      (line 1475)
  8688. * BFD_RELOC_16C_IMM32:                   howto manager.      (line 1476)
  8689. * BFD_RELOC_16C_IMM32_C:                 howto manager.      (line 1477)
  8690. * BFD_RELOC_16C_NUM08:                   howto manager.      (line 1438)
  8691. * BFD_RELOC_16C_NUM08_C:                 howto manager.      (line 1439)
  8692. * BFD_RELOC_16C_NUM16:                   howto manager.      (line 1440)
  8693. * BFD_RELOC_16C_NUM16_C:                 howto manager.      (line 1441)
  8694. * BFD_RELOC_16C_NUM32:                   howto manager.      (line 1442)
  8695. * BFD_RELOC_16C_NUM32_C:                 howto manager.      (line 1443)
  8696. * BFD_RELOC_16C_REG04:                   howto manager.      (line 1454)
  8697. * BFD_RELOC_16C_REG04_C:                 howto manager.      (line 1455)
  8698. * BFD_RELOC_16C_REG04a:                  howto manager.      (line 1456)
  8699. * BFD_RELOC_16C_REG04a_C:                howto manager.      (line 1457)
  8700. * BFD_RELOC_16C_REG14:                   howto manager.      (line 1458)
  8701. * BFD_RELOC_16C_REG14_C:                 howto manager.      (line 1459)
  8702. * BFD_RELOC_16C_REG16:                   howto manager.      (line 1460)
  8703. * BFD_RELOC_16C_REG16_C:                 howto manager.      (line 1461)
  8704. * BFD_RELOC_16C_REG20:                   howto manager.      (line 1462)
  8705. * BFD_RELOC_16C_REG20_C:                 howto manager.      (line 1463)
  8706. * BFD_RELOC_23_PCREL_S2:                 howto manager.      (line   93)
  8707. * BFD_RELOC_24:                          howto manager.      (line   29)
  8708. * BFD_RELOC_24_PCREL:                    howto manager.      (line   37)
  8709. * BFD_RELOC_24_PLT_PCREL:                howto manager.      (line   62)
  8710. * BFD_RELOC_26:                          howto manager.      (line   28)
  8711. * BFD_RELOC_32:                          howto manager.      (line   27)
  8712. * BFD_RELOC_32_BASEREL:                  howto manager.      (line   79)
  8713. * BFD_RELOC_32_GOT_PCREL:                howto manager.      (line   51)
  8714. * BFD_RELOC_32_GOTOFF:                   howto manager.      (line   54)
  8715. * BFD_RELOC_32_PCREL:                    howto manager.      (line   36)
  8716. * BFD_RELOC_32_PCREL_S2:                 howto manager.      (line   91)
  8717. * BFD_RELOC_32_PLT_PCREL:                howto manager.      (line   61)
  8718. * BFD_RELOC_32_PLTOFF:                   howto manager.      (line   66)
  8719. * BFD_RELOC_32_SECREL:                   howto manager.      (line   48)
  8720. * BFD_RELOC_386_COPY:                    howto manager.      (line  422)
  8721. * BFD_RELOC_386_GLOB_DAT:                howto manager.      (line  423)
  8722. * BFD_RELOC_386_GOT32:                   howto manager.      (line  420)
  8723. * BFD_RELOC_386_GOTOFF:                  howto manager.      (line  426)
  8724. * BFD_RELOC_386_GOTPC:                   howto manager.      (line  427)
  8725. * BFD_RELOC_386_JUMP_SLOT:               howto manager.      (line  424)
  8726. * BFD_RELOC_386_PLT32:                   howto manager.      (line  421)
  8727. * BFD_RELOC_386_RELATIVE:                howto manager.      (line  425)
  8728. * BFD_RELOC_386_TLS_DTPMOD32:            howto manager.      (line  437)
  8729. * BFD_RELOC_386_TLS_DTPOFF32:            howto manager.      (line  438)
  8730. * BFD_RELOC_386_TLS_GD:                  howto manager.      (line  432)
  8731. * BFD_RELOC_386_TLS_GOTIE:               howto manager.      (line  430)
  8732. * BFD_RELOC_386_TLS_IE:                  howto manager.      (line  429)
  8733. * BFD_RELOC_386_TLS_IE_32:               howto manager.      (line  435)
  8734. * BFD_RELOC_386_TLS_LDM:                 howto manager.      (line  433)
  8735. * BFD_RELOC_386_TLS_LDO_32:              howto manager.      (line  434)
  8736. * BFD_RELOC_386_TLS_LE:                  howto manager.      (line  431)
  8737. * BFD_RELOC_386_TLS_LE_32:               howto manager.      (line  436)
  8738. * BFD_RELOC_386_TLS_TPOFF:               howto manager.      (line  428)
  8739. * BFD_RELOC_386_TLS_TPOFF32:             howto manager.      (line  439)
  8740. * BFD_RELOC_390_12:                      howto manager.      (line 1155)
  8741. * BFD_RELOC_390_20:                      howto manager.      (line 1255)
  8742. * BFD_RELOC_390_COPY:                    howto manager.      (line 1164)
  8743. * BFD_RELOC_390_GLOB_DAT:                howto manager.      (line 1167)
  8744. * BFD_RELOC_390_GOT12:                   howto manager.      (line 1158)
  8745. * BFD_RELOC_390_GOT16:                   howto manager.      (line 1179)
  8746. * BFD_RELOC_390_GOT20:                   howto manager.      (line 1256)
  8747. * BFD_RELOC_390_GOT64:                   howto manager.      (line 1197)
  8748. * BFD_RELOC_390_GOTENT:                  howto manager.      (line 1203)
  8749. * BFD_RELOC_390_GOTOFF64:                howto manager.      (line 1206)
  8750. * BFD_RELOC_390_GOTPC:                   howto manager.      (line 1176)
  8751. * BFD_RELOC_390_GOTPCDBL:                howto manager.      (line 1194)
  8752. * BFD_RELOC_390_GOTPLT12:                howto manager.      (line 1209)
  8753. * BFD_RELOC_390_GOTPLT16:                howto manager.      (line 1212)
  8754. * BFD_RELOC_390_GOTPLT20:                howto manager.      (line 1257)
  8755. * BFD_RELOC_390_GOTPLT32:                howto manager.      (line 1215)
  8756. * BFD_RELOC_390_GOTPLT64:                howto manager.      (line 1218)
  8757. * BFD_RELOC_390_GOTPLTENT:               howto manager.      (line 1221)
  8758. * BFD_RELOC_390_JMP_SLOT:                howto manager.      (line 1170)
  8759. * BFD_RELOC_390_PC16DBL:                 howto manager.      (line 1182)
  8760. * BFD_RELOC_390_PC32DBL:                 howto manager.      (line 1188)
  8761. * BFD_RELOC_390_PLT16DBL:                howto manager.      (line 1185)
  8762. * BFD_RELOC_390_PLT32:                   howto manager.      (line 1161)
  8763. * BFD_RELOC_390_PLT32DBL:                howto manager.      (line 1191)
  8764. * BFD_RELOC_390_PLT64:                   howto manager.      (line 1200)
  8765. * BFD_RELOC_390_PLTOFF16:                howto manager.      (line 1224)
  8766. * BFD_RELOC_390_PLTOFF32:                howto manager.      (line 1227)
  8767. * BFD_RELOC_390_PLTOFF64:                howto manager.      (line 1230)
  8768. * BFD_RELOC_390_RELATIVE:                howto manager.      (line 1173)
  8769. * BFD_RELOC_390_TLS_DTPMOD:              howto manager.      (line 1250)
  8770. * BFD_RELOC_390_TLS_DTPOFF:              howto manager.      (line 1251)
  8771. * BFD_RELOC_390_TLS_GD32:                howto manager.      (line 1236)
  8772. * BFD_RELOC_390_TLS_GD64:                howto manager.      (line 1237)
  8773. * BFD_RELOC_390_TLS_GDCALL:              howto manager.      (line 1234)
  8774. * BFD_RELOC_390_TLS_GOTIE12:             howto manager.      (line 1238)
  8775. * BFD_RELOC_390_TLS_GOTIE20:             howto manager.      (line 1258)
  8776. * BFD_RELOC_390_TLS_GOTIE32:             howto manager.      (line 1239)
  8777. * BFD_RELOC_390_TLS_GOTIE64:             howto manager.      (line 1240)
  8778. * BFD_RELOC_390_TLS_IE32:                howto manager.      (line 1243)
  8779. * BFD_RELOC_390_TLS_IE64:                howto manager.      (line 1244)
  8780. * BFD_RELOC_390_TLS_IEENT:               howto manager.      (line 1245)
  8781. * BFD_RELOC_390_TLS_LDCALL:              howto manager.      (line 1235)
  8782. * BFD_RELOC_390_TLS_LDM32:               howto manager.      (line 1241)
  8783. * BFD_RELOC_390_TLS_LDM64:               howto manager.      (line 1242)
  8784. * BFD_RELOC_390_TLS_LDO32:               howto manager.      (line 1248)
  8785. * BFD_RELOC_390_TLS_LDO64:               howto manager.      (line 1249)
  8786. * BFD_RELOC_390_TLS_LE32:                howto manager.      (line 1246)
  8787. * BFD_RELOC_390_TLS_LE64:                howto manager.      (line 1247)
  8788. * BFD_RELOC_390_TLS_LOAD:                howto manager.      (line 1233)
  8789. * BFD_RELOC_390_TLS_TPOFF:               howto manager.      (line 1252)
  8790. * BFD_RELOC_64:                          howto manager.      (line   26)
  8791. * BFD_RELOC_64_PCREL:                    howto manager.      (line   35)
  8792. * BFD_RELOC_64_PLT_PCREL:                howto manager.      (line   60)
  8793. * BFD_RELOC_64_PLTOFF:                   howto manager.      (line   65)
  8794. * BFD_RELOC_68K_GLOB_DAT:                howto manager.      (line   74)
  8795. * BFD_RELOC_68K_JMP_SLOT:                howto manager.      (line   75)
  8796. * BFD_RELOC_68K_RELATIVE:                howto manager.      (line   76)
  8797. * BFD_RELOC_8:                           howto manager.      (line   32)
  8798. * BFD_RELOC_860_COPY:                    howto manager.      (line 1543)
  8799. * BFD_RELOC_860_GLOB_DAT:                howto manager.      (line 1544)
  8800. * BFD_RELOC_860_HAGOT:                   howto manager.      (line 1569)
  8801. * BFD_RELOC_860_HAGOTOFF:                howto manager.      (line 1570)
  8802. * BFD_RELOC_860_HAPC:                    howto manager.      (line 1571)
  8803. * BFD_RELOC_860_HIGH:                    howto manager.      (line 1572)
  8804. * BFD_RELOC_860_HIGHADJ:                 howto manager.      (line 1568)
  8805. * BFD_RELOC_860_HIGOT:                   howto manager.      (line 1573)
  8806. * BFD_RELOC_860_HIGOTOFF:                howto manager.      (line 1574)
  8807. * BFD_RELOC_860_JUMP_SLOT:               howto manager.      (line 1545)
  8808. * BFD_RELOC_860_LOGOT0:                  howto manager.      (line 1557)
  8809. * BFD_RELOC_860_LOGOT1:                  howto manager.      (line 1559)
  8810. * BFD_RELOC_860_LOGOTOFF0:               howto manager.      (line 1561)
  8811. * BFD_RELOC_860_LOGOTOFF1:               howto manager.      (line 1563)
  8812. * BFD_RELOC_860_LOGOTOFF2:               howto manager.      (line 1565)
  8813. * BFD_RELOC_860_LOGOTOFF3:               howto manager.      (line 1566)
  8814. * BFD_RELOC_860_LOPC:                    howto manager.      (line 1567)
  8815. * BFD_RELOC_860_LOW0:                    howto manager.      (line 1550)
  8816. * BFD_RELOC_860_LOW1:                    howto manager.      (line 1552)
  8817. * BFD_RELOC_860_LOW2:                    howto manager.      (line 1554)
  8818. * BFD_RELOC_860_LOW3:                    howto manager.      (line 1556)
  8819. * BFD_RELOC_860_PC16:                    howto manager.      (line 1549)
  8820. * BFD_RELOC_860_PC26:                    howto manager.      (line 1547)
  8821. * BFD_RELOC_860_PLT26:                   howto manager.      (line 1548)
  8822. * BFD_RELOC_860_RELATIVE:                howto manager.      (line 1546)
  8823. * BFD_RELOC_860_SPGOT0:                  howto manager.      (line 1558)
  8824. * BFD_RELOC_860_SPGOT1:                  howto manager.      (line 1560)
  8825. * BFD_RELOC_860_SPGOTOFF0:               howto manager.      (line 1562)
  8826. * BFD_RELOC_860_SPGOTOFF1:               howto manager.      (line 1564)
  8827. * BFD_RELOC_860_SPLIT0:                  howto manager.      (line 1551)
  8828. * BFD_RELOC_860_SPLIT1:                  howto manager.      (line 1553)
  8829. * BFD_RELOC_860_SPLIT2:                  howto manager.      (line 1555)
  8830. * BFD_RELOC_8_BASEREL:                   howto manager.      (line   84)
  8831. * BFD_RELOC_8_FFnn:                      howto manager.      (line   88)
  8832. * BFD_RELOC_8_GOT_PCREL:                 howto manager.      (line   53)
  8833. * BFD_RELOC_8_GOTOFF:                    howto manager.      (line   59)
  8834. * BFD_RELOC_8_PCREL:                     howto manager.      (line   40)
  8835. * BFD_RELOC_8_PLT_PCREL:                 howto manager.      (line   64)
  8836. * BFD_RELOC_8_PLTOFF:                    howto manager.      (line   71)
  8837. * BFD_RELOC_ALPHA_BRSGP:                 howto manager.      (line  259)
  8838. * BFD_RELOC_ALPHA_CODEADDR:              howto manager.      (line  250)
  8839. * BFD_RELOC_ALPHA_DTPMOD64:              howto manager.      (line  266)
  8840. * BFD_RELOC_ALPHA_DTPREL16:              howto manager.      (line  271)
  8841. * BFD_RELOC_ALPHA_DTPREL64:              howto manager.      (line  268)
  8842. * BFD_RELOC_ALPHA_DTPREL_HI16:           howto manager.      (line  269)
  8843. * BFD_RELOC_ALPHA_DTPREL_LO16:           howto manager.      (line  270)
  8844. * BFD_RELOC_ALPHA_ELF_LITERAL:           howto manager.      (line  215)
  8845. * BFD_RELOC_ALPHA_GOTDTPREL16:           howto manager.      (line  267)
  8846. * BFD_RELOC_ALPHA_GOTTPREL16:            howto manager.      (line  272)
  8847. * BFD_RELOC_ALPHA_GPDISP:                howto manager.      (line  209)
  8848. * BFD_RELOC_ALPHA_GPDISP_HI16:           howto manager.      (line  195)
  8849. * BFD_RELOC_ALPHA_GPDISP_LO16:           howto manager.      (line  203)
  8850. * BFD_RELOC_ALPHA_GPREL_HI16:            howto manager.      (line  254)
  8851. * BFD_RELOC_ALPHA_GPREL_LO16:            howto manager.      (line  255)
  8852. * BFD_RELOC_ALPHA_HINT:                  howto manager.      (line  241)
  8853. * BFD_RELOC_ALPHA_LINKAGE:               howto manager.      (line  246)
  8854. * BFD_RELOC_ALPHA_LITERAL:               howto manager.      (line  214)
  8855. * BFD_RELOC_ALPHA_LITUSE:                howto manager.      (line  216)
  8856. * BFD_RELOC_ALPHA_TLSGD:                 howto manager.      (line  264)
  8857. * BFD_RELOC_ALPHA_TLSLDM:                howto manager.      (line  265)
  8858. * BFD_RELOC_ALPHA_TPREL16:               howto manager.      (line  276)
  8859. * BFD_RELOC_ALPHA_TPREL64:               howto manager.      (line  273)
  8860. * BFD_RELOC_ALPHA_TPREL_HI16:            howto manager.      (line  274)
  8861. * BFD_RELOC_ALPHA_TPREL_LO16:            howto manager.      (line  275)
  8862. * BFD_RELOC_ARC_B22_PCREL:               howto manager.      (line  754)
  8863. * BFD_RELOC_ARC_B26:                     howto manager.      (line  759)
  8864. * BFD_RELOC_ARM_ADR_IMM:                 howto manager.      (line  615)
  8865. * BFD_RELOC_ARM_ADRL_IMMEDIATE:          howto manager.      (line  607)
  8866. * BFD_RELOC_ARM_COPY:                    howto manager.      (line  628)
  8867. * BFD_RELOC_ARM_CP_OFF_IMM:              howto manager.      (line  613)
  8868. * BFD_RELOC_ARM_CP_OFF_IMM_S2:           howto manager.      (line  614)
  8869. * BFD_RELOC_ARM_GLOB_DAT:                howto manager.      (line  629)
  8870. * BFD_RELOC_ARM_GOT12:                   howto manager.      (line  625)
  8871. * BFD_RELOC_ARM_GOT32:                   howto manager.      (line  626)
  8872. * BFD_RELOC_ARM_GOTOFF:                  howto manager.      (line  632)
  8873. * BFD_RELOC_ARM_GOTPC:                   howto manager.      (line  633)
  8874. * BFD_RELOC_ARM_HWLITERAL:               howto manager.      (line  620)
  8875. * BFD_RELOC_ARM_IMMEDIATE:               howto manager.      (line  606)
  8876. * BFD_RELOC_ARM_IN_POOL:                 howto manager.      (line  618)
  8877. * BFD_RELOC_ARM_JUMP_SLOT:               howto manager.      (line  627)
  8878. * BFD_RELOC_ARM_LDR_IMM:                 howto manager.      (line  616)
  8879. * BFD_RELOC_ARM_LITERAL:                 howto manager.      (line  617)
  8880. * BFD_RELOC_ARM_MULTI:                   howto manager.      (line  612)
  8881. * BFD_RELOC_ARM_OFFSET_IMM:              howto manager.      (line  608)
  8882. * BFD_RELOC_ARM_OFFSET_IMM8:             howto manager.      (line  619)
  8883. * BFD_RELOC_ARM_PCREL_BLX:               howto manager.      (line  596)
  8884. * BFD_RELOC_ARM_PCREL_BRANCH:            howto manager.      (line  592)
  8885. * BFD_RELOC_ARM_PLT32:                   howto manager.      (line  630)
  8886. * BFD_RELOC_ARM_PREL31:                  howto manager.      (line  652)
  8887. * BFD_RELOC_ARM_RELATIVE:                howto manager.      (line  631)
  8888. * BFD_RELOC_ARM_ROSEGREL32:              howto manager.      (line  641)
  8889. * BFD_RELOC_ARM_SBREL32:                 howto manager.      (line  644)
  8890. * BFD_RELOC_ARM_SHIFT_IMM:               howto manager.      (line  609)
  8891. * BFD_RELOC_ARM_SMI:                     howto manager.      (line  610)
  8892. * BFD_RELOC_ARM_SWI:                     howto manager.      (line  611)
  8893. * BFD_RELOC_ARM_TARGET1:                 howto manager.      (line  637)
  8894. * BFD_RELOC_ARM_TARGET2:                 howto manager.      (line  647)
  8895. * BFD_RELOC_ARM_THUMB_ADD:               howto manager.      (line  621)
  8896. * BFD_RELOC_ARM_THUMB_IMM:               howto manager.      (line  622)
  8897. * BFD_RELOC_ARM_THUMB_OFFSET:            howto manager.      (line  624)
  8898. * BFD_RELOC_ARM_THUMB_SHIFT:             howto manager.      (line  623)
  8899. * BFD_RELOC_AVR_13_PCREL:                howto manager.      (line 1076)
  8900. * BFD_RELOC_AVR_16_PM:                   howto manager.      (line 1080)
  8901. * BFD_RELOC_AVR_6:                       howto manager.      (line 1147)
  8902. * BFD_RELOC_AVR_6_ADIW:                  howto manager.      (line 1151)
  8903. * BFD_RELOC_AVR_7_PCREL:                 howto manager.      (line 1072)
  8904. * BFD_RELOC_AVR_CALL:                    howto manager.      (line 1139)
  8905. * BFD_RELOC_AVR_HH8_LDI:                 howto manager.      (line 1092)
  8906. * BFD_RELOC_AVR_HH8_LDI_NEG:             howto manager.      (line 1107)
  8907. * BFD_RELOC_AVR_HH8_LDI_PM:              howto manager.      (line 1120)
  8908. * BFD_RELOC_AVR_HH8_LDI_PM_NEG:          howto manager.      (line 1134)
  8909. * BFD_RELOC_AVR_HI8_LDI:                 howto manager.      (line 1088)
  8910. * BFD_RELOC_AVR_HI8_LDI_NEG:             howto manager.      (line 1102)
  8911. * BFD_RELOC_AVR_HI8_LDI_PM:              howto manager.      (line 1116)
  8912. * BFD_RELOC_AVR_HI8_LDI_PM_NEG:          howto manager.      (line 1129)
  8913. * BFD_RELOC_AVR_LDI:                     howto manager.      (line 1143)
  8914. * BFD_RELOC_AVR_LO8_LDI:                 howto manager.      (line 1084)
  8915. * BFD_RELOC_AVR_LO8_LDI_NEG:             howto manager.      (line 1097)
  8916. * BFD_RELOC_AVR_LO8_LDI_PM:              howto manager.      (line 1112)
  8917. * BFD_RELOC_AVR_LO8_LDI_PM_NEG:          howto manager.      (line 1125)
  8918. * bfd_reloc_code_type:                   howto manager.      (line   10)
  8919. * BFD_RELOC_CRIS_16_GOT:                 howto manager.      (line 1524)
  8920. * BFD_RELOC_CRIS_16_GOTPLT:              howto manager.      (line 1530)
  8921. * BFD_RELOC_CRIS_32_GOT:                 howto manager.      (line 1521)
  8922. * BFD_RELOC_CRIS_32_GOTPLT:              howto manager.      (line 1527)
  8923. * BFD_RELOC_CRIS_32_GOTREL:              howto manager.      (line 1533)
  8924. * BFD_RELOC_CRIS_32_PLT_GOTREL:          howto manager.      (line 1536)
  8925. * BFD_RELOC_CRIS_32_PLT_PCREL:           howto manager.      (line 1539)
  8926. * BFD_RELOC_CRIS_BDISP8:                 howto manager.      (line 1502)
  8927. * BFD_RELOC_CRIS_COPY:                   howto manager.      (line 1515)
  8928. * BFD_RELOC_CRIS_GLOB_DAT:               howto manager.      (line 1516)
  8929. * BFD_RELOC_CRIS_JUMP_SLOT:              howto manager.      (line 1517)
  8930. * BFD_RELOC_CRIS_LAPCQ_OFFSET:           howto manager.      (line 1510)
  8931. * BFD_RELOC_CRIS_RELATIVE:               howto manager.      (line 1518)
  8932. * BFD_RELOC_CRIS_SIGNED_16:              howto manager.      (line 1508)
  8933. * BFD_RELOC_CRIS_SIGNED_6:               howto manager.      (line 1504)
  8934. * BFD_RELOC_CRIS_SIGNED_8:               howto manager.      (line 1506)
  8935. * BFD_RELOC_CRIS_UNSIGNED_16:            howto manager.      (line 1509)
  8936. * BFD_RELOC_CRIS_UNSIGNED_4:             howto manager.      (line 1511)
  8937. * BFD_RELOC_CRIS_UNSIGNED_5:             howto manager.      (line 1503)
  8938. * BFD_RELOC_CRIS_UNSIGNED_6:             howto manager.      (line 1505)
  8939. * BFD_RELOC_CRIS_UNSIGNED_8:             howto manager.      (line 1507)
  8940. * BFD_RELOC_CRX_ABS16:                   howto manager.      (line 1490)
  8941. * BFD_RELOC_CRX_ABS32:                   howto manager.      (line 1491)
  8942. * BFD_RELOC_CRX_IMM16:                   howto manager.      (line 1495)
  8943. * BFD_RELOC_CRX_IMM32:                   howto manager.      (line 1496)
  8944. * BFD_RELOC_CRX_NUM16:                   howto manager.      (line 1493)
  8945. * BFD_RELOC_CRX_NUM32:                   howto manager.      (line 1494)
  8946. * BFD_RELOC_CRX_NUM8:                    howto manager.      (line 1492)
  8947. * BFD_RELOC_CRX_REGREL12:                howto manager.      (line 1486)
  8948. * BFD_RELOC_CRX_REGREL22:                howto manager.      (line 1487)
  8949. * BFD_RELOC_CRX_REGREL28:                howto manager.      (line 1488)
  8950. * BFD_RELOC_CRX_REGREL32:                howto manager.      (line 1489)
  8951. * BFD_RELOC_CRX_REL16:                   howto manager.      (line 1483)
  8952. * BFD_RELOC_CRX_REL24:                   howto manager.      (line 1484)
  8953. * BFD_RELOC_CRX_REL32:                   howto manager.      (line 1485)
  8954. * BFD_RELOC_CRX_REL4:                    howto manager.      (line 1480)
  8955. * BFD_RELOC_CRX_REL8:                    howto manager.      (line 1481)
  8956. * BFD_RELOC_CRX_REL8_CMP:                howto manager.      (line 1482)
  8957. * BFD_RELOC_CRX_SWITCH16:                howto manager.      (line 1498)
  8958. * BFD_RELOC_CRX_SWITCH32:                howto manager.      (line 1499)
  8959. * BFD_RELOC_CRX_SWITCH8:                 howto manager.      (line 1497)
  8960. * BFD_RELOC_CTOR:                        howto manager.      (line  586)
  8961. * BFD_RELOC_D10V_10_PCREL_L:             howto manager.      (line  768)
  8962. * BFD_RELOC_D10V_10_PCREL_R:             howto manager.      (line  764)
  8963. * BFD_RELOC_D10V_18:                     howto manager.      (line  773)
  8964. * BFD_RELOC_D10V_18_PCREL:               howto manager.      (line  776)
  8965. * BFD_RELOC_D30V_15:                     howto manager.      (line  791)
  8966. * BFD_RELOC_D30V_15_PCREL:               howto manager.      (line  795)
  8967. * BFD_RELOC_D30V_15_PCREL_R:             howto manager.      (line  799)
  8968. * BFD_RELOC_D30V_21:                     howto manager.      (line  804)
  8969. * BFD_RELOC_D30V_21_PCREL:               howto manager.      (line  808)
  8970. * BFD_RELOC_D30V_21_PCREL_R:             howto manager.      (line  812)
  8971. * BFD_RELOC_D30V_32:                     howto manager.      (line  817)
  8972. * BFD_RELOC_D30V_32_PCREL:               howto manager.      (line  820)
  8973. * BFD_RELOC_D30V_6:                      howto manager.      (line  779)
  8974. * BFD_RELOC_D30V_9_PCREL:                howto manager.      (line  782)
  8975. * BFD_RELOC_D30V_9_PCREL_R:              howto manager.      (line  786)
  8976. * BFD_RELOC_DLX_HI16_S:                  howto manager.      (line  823)
  8977. * BFD_RELOC_DLX_JMP26:                   howto manager.      (line  829)
  8978. * BFD_RELOC_DLX_LO16:                    howto manager.      (line  826)
  8979. * BFD_RELOC_FR30_10_IN_8:                howto manager.      (line 1002)
  8980. * BFD_RELOC_FR30_12_PCREL:               howto manager.      (line 1010)
  8981. * BFD_RELOC_FR30_20:                     howto manager.      (line  986)
  8982. * BFD_RELOC_FR30_48:                     howto manager.      (line  983)
  8983. * BFD_RELOC_FR30_6_IN_4:                 howto manager.      (line  990)
  8984. * BFD_RELOC_FR30_8_IN_8:                 howto manager.      (line  994)
  8985. * BFD_RELOC_FR30_9_IN_8:                 howto manager.      (line  998)
  8986. * BFD_RELOC_FR30_9_PCREL:                howto manager.      (line 1006)
  8987. * BFD_RELOC_FRV_FUNCDESC:                howto manager.      (line  364)
  8988. * BFD_RELOC_FRV_FUNCDESC_GOT12:          howto manager.      (line  365)
  8989. * BFD_RELOC_FRV_FUNCDESC_GOTHI:          howto manager.      (line  366)
  8990. * BFD_RELOC_FRV_FUNCDESC_GOTLO:          howto manager.      (line  367)
  8991. * BFD_RELOC_FRV_FUNCDESC_GOTOFF12:       howto manager.      (line  369)
  8992. * BFD_RELOC_FRV_FUNCDESC_GOTOFFHI:       howto manager.      (line  370)
  8993. * BFD_RELOC_FRV_FUNCDESC_GOTOFFLO:       howto manager.      (line  371)
  8994. * BFD_RELOC_FRV_FUNCDESC_VALUE:          howto manager.      (line  368)
  8995. * BFD_RELOC_FRV_GETTLSOFF:               howto manager.      (line  375)
  8996. * BFD_RELOC_FRV_GETTLSOFF_RELAX:         howto manager.      (line  388)
  8997. * BFD_RELOC_FRV_GOT12:                   howto manager.      (line  361)
  8998. * BFD_RELOC_FRV_GOTHI:                   howto manager.      (line  362)
  8999. * BFD_RELOC_FRV_GOTLO:                   howto manager.      (line  363)
  9000. * BFD_RELOC_FRV_GOTOFF12:                howto manager.      (line  372)
  9001. * BFD_RELOC_FRV_GOTOFFHI:                howto manager.      (line  373)
  9002. * BFD_RELOC_FRV_GOTOFFLO:                howto manager.      (line  374)
  9003. * BFD_RELOC_FRV_GOTTLSDESC12:            howto manager.      (line  377)
  9004. * BFD_RELOC_FRV_GOTTLSDESCHI:            howto manager.      (line  378)
  9005. * BFD_RELOC_FRV_GOTTLSDESCLO:            howto manager.      (line  379)
  9006. * BFD_RELOC_FRV_GOTTLSOFF12:             howto manager.      (line  383)
  9007. * BFD_RELOC_FRV_GOTTLSOFFHI:             howto manager.      (line  384)
  9008. * BFD_RELOC_FRV_GOTTLSOFFLO:             howto manager.      (line  385)
  9009. * BFD_RELOC_FRV_GPREL12:                 howto manager.      (line  356)
  9010. * BFD_RELOC_FRV_GPREL32:                 howto manager.      (line  358)
  9011. * BFD_RELOC_FRV_GPRELHI:                 howto manager.      (line  359)
  9012. * BFD_RELOC_FRV_GPRELLO:                 howto manager.      (line  360)
  9013. * BFD_RELOC_FRV_GPRELU12:                howto manager.      (line  357)
  9014. * BFD_RELOC_FRV_HI16:                    howto manager.      (line  355)
  9015. * BFD_RELOC_FRV_LABEL16:                 howto manager.      (line  352)
  9016. * BFD_RELOC_FRV_LABEL24:                 howto manager.      (line  353)
  9017. * BFD_RELOC_FRV_LO16:                    howto manager.      (line  354)
  9018. * BFD_RELOC_FRV_TLSDESC_RELAX:           howto manager.      (line  387)
  9019. * BFD_RELOC_FRV_TLSDESC_VALUE:           howto manager.      (line  376)
  9020. * BFD_RELOC_FRV_TLSMOFF:                 howto manager.      (line  390)
  9021. * BFD_RELOC_FRV_TLSMOFF12:               howto manager.      (line  380)
  9022. * BFD_RELOC_FRV_TLSMOFFHI:               howto manager.      (line  381)
  9023. * BFD_RELOC_FRV_TLSMOFFLO:               howto manager.      (line  382)
  9024. * BFD_RELOC_FRV_TLSOFF:                  howto manager.      (line  386)
  9025. * BFD_RELOC_FRV_TLSOFF_RELAX:            howto manager.      (line  389)
  9026. * BFD_RELOC_GPREL16:                     howto manager.      (line  106)
  9027. * BFD_RELOC_GPREL32:                     howto manager.      (line  107)
  9028. * BFD_RELOC_H8_DIR16A8:                  howto manager.      (line 1581)
  9029. * BFD_RELOC_H8_DIR16R8:                  howto manager.      (line 1582)
  9030. * BFD_RELOC_H8_DIR24A8:                  howto manager.      (line 1583)
  9031. * BFD_RELOC_H8_DIR24R8:                  howto manager.      (line 1584)
  9032. * BFD_RELOC_H8_DIR32A16:                 howto manager.      (line 1585)
  9033. * BFD_RELOC_HI16:                        howto manager.      (line  289)
  9034. * BFD_RELOC_HI16_BASEREL:                howto manager.      (line   82)
  9035. * BFD_RELOC_HI16_GOTOFF:                 howto manager.      (line   57)
  9036. * BFD_RELOC_HI16_PLTOFF:                 howto manager.      (line   69)
  9037. * BFD_RELOC_HI16_S:                      howto manager.      (line  292)
  9038. * BFD_RELOC_HI16_S_BASEREL:              howto manager.      (line   83)
  9039. * BFD_RELOC_HI16_S_GOTOFF:               howto manager.      (line   58)
  9040. * BFD_RELOC_HI16_S_PLTOFF:               howto manager.      (line   70)
  9041. * BFD_RELOC_HI22:                        howto manager.      (line  101)
  9042. * BFD_RELOC_I370_D12:                    howto manager.      (line  583)
  9043. * BFD_RELOC_I960_CALLJ:                  howto manager.      (line  113)
  9044. * BFD_RELOC_IA64_COPY:                   howto manager.      (line 1374)
  9045. * BFD_RELOC_IA64_DIR32LSB:               howto manager.      (line 1319)
  9046. * BFD_RELOC_IA64_DIR32MSB:               howto manager.      (line 1318)
  9047. * BFD_RELOC_IA64_DIR64LSB:               howto manager.      (line 1321)
  9048. * BFD_RELOC_IA64_DIR64MSB:               howto manager.      (line 1320)
  9049. * BFD_RELOC_IA64_DTPMOD64LSB:            howto manager.      (line 1384)
  9050. * BFD_RELOC_IA64_DTPMOD64MSB:            howto manager.      (line 1383)
  9051. * BFD_RELOC_IA64_DTPREL14:               howto manager.      (line 1386)
  9052. * BFD_RELOC_IA64_DTPREL22:               howto manager.      (line 1387)
  9053. * BFD_RELOC_IA64_DTPREL32LSB:            howto manager.      (line 1390)
  9054. * BFD_RELOC_IA64_DTPREL32MSB:            howto manager.      (line 1389)
  9055. * BFD_RELOC_IA64_DTPREL64I:              howto manager.      (line 1388)
  9056. * BFD_RELOC_IA64_DTPREL64LSB:            howto manager.      (line 1392)
  9057. * BFD_RELOC_IA64_DTPREL64MSB:            howto manager.      (line 1391)
  9058. * BFD_RELOC_IA64_FPTR32LSB:              howto manager.      (line 1336)
  9059. * BFD_RELOC_IA64_FPTR32MSB:              howto manager.      (line 1335)
  9060. * BFD_RELOC_IA64_FPTR64I:                howto manager.      (line 1334)
  9061. * BFD_RELOC_IA64_FPTR64LSB:              howto manager.      (line 1338)
  9062. * BFD_RELOC_IA64_FPTR64MSB:              howto manager.      (line 1337)
  9063. * BFD_RELOC_IA64_GPREL22:                howto manager.      (line 1322)
  9064. * BFD_RELOC_IA64_GPREL32LSB:             howto manager.      (line 1325)
  9065. * BFD_RELOC_IA64_GPREL32MSB:             howto manager.      (line 1324)
  9066. * BFD_RELOC_IA64_GPREL64I:               howto manager.      (line 1323)
  9067. * BFD_RELOC_IA64_GPREL64LSB:             howto manager.      (line 1327)
  9068. * BFD_RELOC_IA64_GPREL64MSB:             howto manager.      (line 1326)
  9069. * BFD_RELOC_IA64_IMM14:                  howto manager.      (line 1315)
  9070. * BFD_RELOC_IA64_IMM22:                  howto manager.      (line 1316)
  9071. * BFD_RELOC_IA64_IMM64:                  howto manager.      (line 1317)
  9072. * BFD_RELOC_IA64_IPLTLSB:                howto manager.      (line 1373)
  9073. * BFD_RELOC_IA64_IPLTMSB:                howto manager.      (line 1372)
  9074. * BFD_RELOC_IA64_LDXMOV:                 howto manager.      (line 1376)
  9075. * BFD_RELOC_IA64_LTOFF22:                howto manager.      (line 1328)
  9076. * BFD_RELOC_IA64_LTOFF22X:               howto manager.      (line 1375)
  9077. * BFD_RELOC_IA64_LTOFF64I:               howto manager.      (line 1329)
  9078. * BFD_RELOC_IA64_LTOFF_DTPMOD22:         howto manager.      (line 1385)
  9079. * BFD_RELOC_IA64_LTOFF_DTPREL22:         howto manager.      (line 1393)
  9080. * BFD_RELOC_IA64_LTOFF_FPTR22:           howto manager.      (line 1350)
  9081. * BFD_RELOC_IA64_LTOFF_FPTR32LSB:        howto manager.      (line 1353)
  9082. * BFD_RELOC_IA64_LTOFF_FPTR32MSB:        howto manager.      (line 1352)
  9083. * BFD_RELOC_IA64_LTOFF_FPTR64I:          howto manager.      (line 1351)
  9084. * BFD_RELOC_IA64_LTOFF_FPTR64LSB:        howto manager.      (line 1355)
  9085. * BFD_RELOC_IA64_LTOFF_FPTR64MSB:        howto manager.      (line 1354)
  9086. * BFD_RELOC_IA64_LTOFF_TPREL22:          howto manager.      (line 1382)
  9087. * BFD_RELOC_IA64_LTV32LSB:               howto manager.      (line 1369)
  9088. * BFD_RELOC_IA64_LTV32MSB:               howto manager.      (line 1368)
  9089. * BFD_RELOC_IA64_LTV64LSB:               howto manager.      (line 1371)
  9090. * BFD_RELOC_IA64_LTV64MSB:               howto manager.      (line 1370)
  9091. * BFD_RELOC_IA64_PCREL21B:               howto manager.      (line 1339)
  9092. * BFD_RELOC_IA64_PCREL21BI:              howto manager.      (line 1340)
  9093. * BFD_RELOC_IA64_PCREL21F:               howto manager.      (line 1342)
  9094. * BFD_RELOC_IA64_PCREL21M:               howto manager.      (line 1341)
  9095. * BFD_RELOC_IA64_PCREL22:                howto manager.      (line 1343)
  9096. * BFD_RELOC_IA64_PCREL32LSB:             howto manager.      (line 1347)
  9097. * BFD_RELOC_IA64_PCREL32MSB:             howto manager.      (line 1346)
  9098. * BFD_RELOC_IA64_PCREL60B:               howto manager.      (line 1344)
  9099. * BFD_RELOC_IA64_PCREL64I:               howto manager.      (line 1345)
  9100. * BFD_RELOC_IA64_PCREL64LSB:             howto manager.      (line 1349)
  9101. * BFD_RELOC_IA64_PCREL64MSB:             howto manager.      (line 1348)
  9102. * BFD_RELOC_IA64_PLTOFF22:               howto manager.      (line 1330)
  9103. * BFD_RELOC_IA64_PLTOFF64I:              howto manager.      (line 1331)
  9104. * BFD_RELOC_IA64_PLTOFF64LSB:            howto manager.      (line 1333)
  9105. * BFD_RELOC_IA64_PLTOFF64MSB:            howto manager.      (line 1332)
  9106. * BFD_RELOC_IA64_REL32LSB:               howto manager.      (line 1365)
  9107. * BFD_RELOC_IA64_REL32MSB:               howto manager.      (line 1364)
  9108. * BFD_RELOC_IA64_REL64LSB:               howto manager.      (line 1367)
  9109. * BFD_RELOC_IA64_REL64MSB:               howto manager.      (line 1366)
  9110. * BFD_RELOC_IA64_SECREL32LSB:            howto manager.      (line 1361)
  9111. * BFD_RELOC_IA64_SECREL32MSB:            howto manager.      (line 1360)
  9112. * BFD_RELOC_IA64_SECREL64LSB:            howto manager.      (line 1363)
  9113. * BFD_RELOC_IA64_SECREL64MSB:            howto manager.      (line 1362)
  9114. * BFD_RELOC_IA64_SEGREL32LSB:            howto manager.      (line 1357)
  9115. * BFD_RELOC_IA64_SEGREL32MSB:            howto manager.      (line 1356)
  9116. * BFD_RELOC_IA64_SEGREL64LSB:            howto manager.      (line 1359)
  9117. * BFD_RELOC_IA64_SEGREL64MSB:            howto manager.      (line 1358)
  9118. * BFD_RELOC_IA64_TPREL14:                howto manager.      (line 1377)
  9119. * BFD_RELOC_IA64_TPREL22:                howto manager.      (line 1378)
  9120. * BFD_RELOC_IA64_TPREL64I:               howto manager.      (line 1379)
  9121. * BFD_RELOC_IA64_TPREL64LSB:             howto manager.      (line 1381)
  9122. * BFD_RELOC_IA64_TPREL64MSB:             howto manager.      (line 1380)
  9123. * BFD_RELOC_IP2K_ADDR16CJP:              howto manager.      (line 1267)
  9124. * BFD_RELOC_IP2K_BANK:                   howto manager.      (line 1264)
  9125. * BFD_RELOC_IP2K_EX8DATA:                howto manager.      (line 1275)
  9126. * BFD_RELOC_IP2K_FR9:                    howto manager.      (line 1261)
  9127. * BFD_RELOC_IP2K_FR_OFFSET:              howto manager.      (line 1288)
  9128. * BFD_RELOC_IP2K_HI8DATA:                howto manager.      (line 1274)
  9129. * BFD_RELOC_IP2K_HI8INSN:                howto manager.      (line 1279)
  9130. * BFD_RELOC_IP2K_LO8DATA:                howto manager.      (line 1273)
  9131. * BFD_RELOC_IP2K_LO8INSN:                howto manager.      (line 1278)
  9132. * BFD_RELOC_IP2K_PAGE3:                  howto manager.      (line 1270)
  9133. * BFD_RELOC_IP2K_PC_SKIP:                howto manager.      (line 1282)
  9134. * BFD_RELOC_IP2K_TEXT:                   howto manager.      (line 1285)
  9135. * BFD_RELOC_IQ2000_OFFSET_16:            howto manager.      (line 1608)
  9136. * BFD_RELOC_IQ2000_OFFSET_21:            howto manager.      (line 1609)
  9137. * BFD_RELOC_IQ2000_UHI16:                howto manager.      (line 1610)
  9138. * BFD_RELOC_LO10:                        howto manager.      (line  102)
  9139. * BFD_RELOC_LO16:                        howto manager.      (line  298)
  9140. * BFD_RELOC_LO16_BASEREL:                howto manager.      (line   81)
  9141. * BFD_RELOC_LO16_GOTOFF:                 howto manager.      (line   56)
  9142. * BFD_RELOC_LO16_PLTOFF:                 howto manager.      (line   68)
  9143. * BFD_RELOC_M32R_10_PCREL:               howto manager.      (line  836)
  9144. * BFD_RELOC_M32R_18_PCREL:               howto manager.      (line  840)
  9145. * BFD_RELOC_M32R_24:                     howto manager.      (line  832)
  9146. * BFD_RELOC_M32R_26_PCREL:               howto manager.      (line  843)
  9147. * BFD_RELOC_M32R_26_PLTREL:              howto manager.      (line  862)
  9148. * BFD_RELOC_M32R_COPY:                   howto manager.      (line  863)
  9149. * BFD_RELOC_M32R_GLOB_DAT:               howto manager.      (line  864)
  9150. * BFD_RELOC_M32R_GOT16_HI_SLO:           howto manager.      (line  873)
  9151. * BFD_RELOC_M32R_GOT16_HI_ULO:           howto manager.      (line  872)
  9152. * BFD_RELOC_M32R_GOT16_LO:               howto manager.      (line  874)
  9153. * BFD_RELOC_M32R_GOT24:                  howto manager.      (line  861)
  9154. * BFD_RELOC_M32R_GOTOFF:                 howto manager.      (line  867)
  9155. * BFD_RELOC_M32R_GOTOFF_HI_SLO:          howto manager.      (line  869)
  9156. * BFD_RELOC_M32R_GOTOFF_HI_ULO:          howto manager.      (line  868)
  9157. * BFD_RELOC_M32R_GOTOFF_LO:              howto manager.      (line  870)
  9158. * BFD_RELOC_M32R_GOTPC24:                howto manager.      (line  871)
  9159. * BFD_RELOC_M32R_GOTPC_HI_SLO:           howto manager.      (line  876)
  9160. * BFD_RELOC_M32R_GOTPC_HI_ULO:           howto manager.      (line  875)
  9161. * BFD_RELOC_M32R_GOTPC_LO:               howto manager.      (line  877)
  9162. * BFD_RELOC_M32R_HI16_SLO:               howto manager.      (line  850)
  9163. * BFD_RELOC_M32R_HI16_ULO:               howto manager.      (line  846)
  9164. * BFD_RELOC_M32R_JMP_SLOT:               howto manager.      (line  865)
  9165. * BFD_RELOC_M32R_LO16:                   howto manager.      (line  854)
  9166. * BFD_RELOC_M32R_RELATIVE:               howto manager.      (line  866)
  9167. * BFD_RELOC_M32R_SDA16:                  howto manager.      (line  857)
  9168. * BFD_RELOC_M68HC11_24:                  howto manager.      (line 1429)
  9169. * BFD_RELOC_M68HC11_3B:                  howto manager.      (line 1404)
  9170. * BFD_RELOC_M68HC11_HI8:                 howto manager.      (line 1396)
  9171. * BFD_RELOC_M68HC11_LO16:                howto manager.      (line 1418)
  9172. * BFD_RELOC_M68HC11_LO8:                 howto manager.      (line 1400)
  9173. * BFD_RELOC_M68HC11_PAGE:                howto manager.      (line 1424)
  9174. * BFD_RELOC_M68HC11_RL_GROUP:            howto manager.      (line 1413)
  9175. * BFD_RELOC_M68HC11_RL_JUMP:             howto manager.      (line 1407)
  9176. * BFD_RELOC_M68HC12_5B:                  howto manager.      (line 1435)
  9177. * BFD_RELOC_MCORE_PCREL_32:              howto manager.      (line 1017)
  9178. * BFD_RELOC_MCORE_PCREL_IMM11BY2:        howto manager.      (line 1015)
  9179. * BFD_RELOC_MCORE_PCREL_IMM4BY2:         howto manager.      (line 1016)
  9180. * BFD_RELOC_MCORE_PCREL_IMM8BY4:         howto manager.      (line 1014)
  9181. * BFD_RELOC_MCORE_PCREL_JSR_IMM11BY2:    howto manager.      (line 1018)
  9182. * BFD_RELOC_MCORE_RVA:                   howto manager.      (line 1019)
  9183. * BFD_RELOC_MIPS16_GPREL:                howto manager.      (line  286)
  9184. * BFD_RELOC_MIPS16_HI16:                 howto manager.      (line  301)
  9185. * BFD_RELOC_MIPS16_HI16_S:               howto manager.      (line  304)
  9186. * BFD_RELOC_MIPS16_JMP:                  howto manager.      (line  283)
  9187. * BFD_RELOC_MIPS16_LO16:                 howto manager.      (line  310)
  9188. * BFD_RELOC_MIPS_CALL16:                 howto manager.      (line  317)
  9189. * BFD_RELOC_MIPS_CALL_HI16:              howto manager.      (line  320)
  9190. * BFD_RELOC_MIPS_CALL_LO16:              howto manager.      (line  321)
  9191. * BFD_RELOC_MIPS_DELETE:                 howto manager.      (line  330)
  9192. * BFD_RELOC_MIPS_GOT16:                  howto manager.      (line  316)
  9193. * BFD_RELOC_MIPS_GOT_DISP:               howto manager.      (line  325)
  9194. * BFD_RELOC_MIPS_GOT_HI16:               howto manager.      (line  318)
  9195. * BFD_RELOC_MIPS_GOT_LO16:               howto manager.      (line  319)
  9196. * BFD_RELOC_MIPS_GOT_OFST:               howto manager.      (line  324)
  9197. * BFD_RELOC_MIPS_GOT_PAGE:               howto manager.      (line  323)
  9198. * BFD_RELOC_MIPS_HIGHER:                 howto manager.      (line  332)
  9199. * BFD_RELOC_MIPS_HIGHEST:                howto manager.      (line  331)
  9200. * BFD_RELOC_MIPS_INSERT_A:               howto manager.      (line  328)
  9201. * BFD_RELOC_MIPS_INSERT_B:               howto manager.      (line  329)
  9202. * BFD_RELOC_MIPS_JALR:                   howto manager.      (line  336)
  9203. * BFD_RELOC_MIPS_JMP:                    howto manager.      (line  279)
  9204. * BFD_RELOC_MIPS_LITERAL:                howto manager.      (line  313)
  9205. * BFD_RELOC_MIPS_REL16:                  howto manager.      (line  334)
  9206. * BFD_RELOC_MIPS_RELGOT:                 howto manager.      (line  335)
  9207. * BFD_RELOC_MIPS_SCN_DISP:               howto manager.      (line  333)
  9208. * BFD_RELOC_MIPS_SHIFT5:                 howto manager.      (line  326)
  9209. * BFD_RELOC_MIPS_SHIFT6:                 howto manager.      (line  327)
  9210. * BFD_RELOC_MIPS_SUB:                    howto manager.      (line  322)
  9211. * BFD_RELOC_MIPS_TLS_DTPMOD32:           howto manager.      (line  337)
  9212. * BFD_RELOC_MIPS_TLS_DTPMOD64:           howto manager.      (line  339)
  9213. * BFD_RELOC_MIPS_TLS_DTPREL32:           howto manager.      (line  338)
  9214. * BFD_RELOC_MIPS_TLS_DTPREL64:           howto manager.      (line  340)
  9215. * BFD_RELOC_MIPS_TLS_DTPREL_HI16:        howto manager.      (line  343)
  9216. * BFD_RELOC_MIPS_TLS_DTPREL_LO16:        howto manager.      (line  344)
  9217. * BFD_RELOC_MIPS_TLS_GD:                 howto manager.      (line  341)
  9218. * BFD_RELOC_MIPS_TLS_GOTTPREL:           howto manager.      (line  345)
  9219. * BFD_RELOC_MIPS_TLS_LDM:                howto manager.      (line  342)
  9220. * BFD_RELOC_MIPS_TLS_TPREL32:            howto manager.      (line  346)
  9221. * BFD_RELOC_MIPS_TLS_TPREL64:            howto manager.      (line  347)
  9222. * BFD_RELOC_MIPS_TLS_TPREL_HI16:         howto manager.      (line  348)
  9223. * BFD_RELOC_MIPS_TLS_TPREL_LO16:         howto manager.      (line  349)
  9224. * BFD_RELOC_MMIX_ADDR19:                 howto manager.      (line 1048)
  9225. * BFD_RELOC_MMIX_ADDR27:                 howto manager.      (line 1052)
  9226. * BFD_RELOC_MMIX_BASE_PLUS_OFFSET:       howto manager.      (line 1064)
  9227. * BFD_RELOC_MMIX_CBRANCH:                howto manager.      (line 1028)
  9228. * BFD_RELOC_MMIX_CBRANCH_1:              howto manager.      (line 1030)
  9229. * BFD_RELOC_MMIX_CBRANCH_2:              howto manager.      (line 1031)
  9230. * BFD_RELOC_MMIX_CBRANCH_3:              howto manager.      (line 1032)
  9231. * BFD_RELOC_MMIX_CBRANCH_J:              howto manager.      (line 1029)
  9232. * BFD_RELOC_MMIX_GETA:                   howto manager.      (line 1022)
  9233. * BFD_RELOC_MMIX_GETA_1:                 howto manager.      (line 1023)
  9234. * BFD_RELOC_MMIX_GETA_2:                 howto manager.      (line 1024)
  9235. * BFD_RELOC_MMIX_GETA_3:                 howto manager.      (line 1025)
  9236. * BFD_RELOC_MMIX_JMP:                    howto manager.      (line 1042)
  9237. * BFD_RELOC_MMIX_JMP_1:                  howto manager.      (line 1043)
  9238. * BFD_RELOC_MMIX_JMP_2:                  howto manager.      (line 1044)
  9239. * BFD_RELOC_MMIX_JMP_3:                  howto manager.      (line 1045)
  9240. * BFD_RELOC_MMIX_LOCAL:                  howto manager.      (line 1068)
  9241. * BFD_RELOC_MMIX_PUSHJ:                  howto manager.      (line 1035)
  9242. * BFD_RELOC_MMIX_PUSHJ_1:                howto manager.      (line 1036)
  9243. * BFD_RELOC_MMIX_PUSHJ_2:                howto manager.      (line 1037)
  9244. * BFD_RELOC_MMIX_PUSHJ_3:                howto manager.      (line 1038)
  9245. * BFD_RELOC_MMIX_PUSHJ_STUBBABLE:        howto manager.      (line 1039)
  9246. * BFD_RELOC_MMIX_REG:                    howto manager.      (line 1060)
  9247. * BFD_RELOC_MMIX_REG_OR_BYTE:            howto manager.      (line 1056)
  9248. * BFD_RELOC_MN10300_16_PCREL:            howto manager.      (line  952)
  9249. * BFD_RELOC_MN10300_32_PCREL:            howto manager.      (line  948)
  9250. * BFD_RELOC_MN10300_COPY:                howto manager.      (line  408)
  9251. * BFD_RELOC_MN10300_GLOB_DAT:            howto manager.      (line  411)
  9252. * BFD_RELOC_MN10300_GOT16:               howto manager.      (line  404)
  9253. * BFD_RELOC_MN10300_GOT24:               howto manager.      (line  400)
  9254. * BFD_RELOC_MN10300_GOT32:               howto manager.      (line  396)
  9255. * BFD_RELOC_MN10300_GOTOFF24:            howto manager.      (line  393)
  9256. * BFD_RELOC_MN10300_JMP_SLOT:            howto manager.      (line  414)
  9257. * BFD_RELOC_MN10300_RELATIVE:            howto manager.      (line  417)
  9258. * BFD_RELOC_MSP430_10_PCREL:             howto manager.      (line 1599)
  9259. * BFD_RELOC_MSP430_16:                   howto manager.      (line 1601)
  9260. * BFD_RELOC_MSP430_16_BYTE:              howto manager.      (line 1603)
  9261. * BFD_RELOC_MSP430_16_PCREL:             howto manager.      (line 1600)
  9262. * BFD_RELOC_MSP430_16_PCREL_BYTE:        howto manager.      (line 1602)
  9263. * BFD_RELOC_MSP430_2X_PCREL:             howto manager.      (line 1604)
  9264. * BFD_RELOC_MSP430_RL_PCREL:             howto manager.      (line 1605)
  9265. * BFD_RELOC_NONE:                        howto manager.      (line  116)
  9266. * BFD_RELOC_NS32K_DISP_16:               howto manager.      (line  467)
  9267. * BFD_RELOC_NS32K_DISP_16_PCREL:         howto manager.      (line  470)
  9268. * BFD_RELOC_NS32K_DISP_32:               howto manager.      (line  468)
  9269. * BFD_RELOC_NS32K_DISP_32_PCREL:         howto manager.      (line  471)
  9270. * BFD_RELOC_NS32K_DISP_8:                howto manager.      (line  466)
  9271. * BFD_RELOC_NS32K_DISP_8_PCREL:          howto manager.      (line  469)
  9272. * BFD_RELOC_NS32K_IMM_16:                howto manager.      (line  461)
  9273. * BFD_RELOC_NS32K_IMM_16_PCREL:          howto manager.      (line  464)
  9274. * BFD_RELOC_NS32K_IMM_32:                howto manager.      (line  462)
  9275. * BFD_RELOC_NS32K_IMM_32_PCREL:          howto manager.      (line  465)
  9276. * BFD_RELOC_NS32K_IMM_8:                 howto manager.      (line  460)
  9277. * BFD_RELOC_NS32K_IMM_8_PCREL:           howto manager.      (line  463)
  9278. * BFD_RELOC_OPENRISC_ABS_26:             howto manager.      (line 1577)
  9279. * BFD_RELOC_OPENRISC_REL_26:             howto manager.      (line 1578)
  9280. * BFD_RELOC_PDP11_DISP_6_PCREL:          howto manager.      (line  475)
  9281. * BFD_RELOC_PDP11_DISP_8_PCREL:          howto manager.      (line  474)
  9282. * BFD_RELOC_PJ_CODE_DIR16:               howto manager.      (line  480)
  9283. * BFD_RELOC_PJ_CODE_DIR32:               howto manager.      (line  481)
  9284. * BFD_RELOC_PJ_CODE_HI16:                howto manager.      (line  478)
  9285. * BFD_RELOC_PJ_CODE_LO16:                howto manager.      (line  479)
  9286. * BFD_RELOC_PJ_CODE_REL16:               howto manager.      (line  482)
  9287. * BFD_RELOC_PJ_CODE_REL32:               howto manager.      (line  483)
  9288. * BFD_RELOC_PPC64_ADDR16_DS:             howto manager.      (line  528)
  9289. * BFD_RELOC_PPC64_ADDR16_LO_DS:          howto manager.      (line  529)
  9290. * BFD_RELOC_PPC64_DTPREL16_DS:           howto manager.      (line  575)
  9291. * BFD_RELOC_PPC64_DTPREL16_HIGHER:       howto manager.      (line  577)
  9292. * BFD_RELOC_PPC64_DTPREL16_HIGHERA:      howto manager.      (line  578)
  9293. * BFD_RELOC_PPC64_DTPREL16_HIGHEST:      howto manager.      (line  579)
  9294. * BFD_RELOC_PPC64_DTPREL16_HIGHESTA:     howto manager.      (line  580)
  9295. * BFD_RELOC_PPC64_DTPREL16_LO_DS:        howto manager.      (line  576)
  9296. * BFD_RELOC_PPC64_GOT16_DS:              howto manager.      (line  530)
  9297. * BFD_RELOC_PPC64_GOT16_LO_DS:           howto manager.      (line  531)
  9298. * BFD_RELOC_PPC64_HIGHER:                howto manager.      (line  516)
  9299. * BFD_RELOC_PPC64_HIGHER_S:              howto manager.      (line  517)
  9300. * BFD_RELOC_PPC64_HIGHEST:               howto manager.      (line  518)
  9301. * BFD_RELOC_PPC64_HIGHEST_S:             howto manager.      (line  519)
  9302. * BFD_RELOC_PPC64_PLT16_LO_DS:           howto manager.      (line  532)
  9303. * BFD_RELOC_PPC64_PLTGOT16:              howto manager.      (line  524)
  9304. * BFD_RELOC_PPC64_PLTGOT16_DS:           howto manager.      (line  537)
  9305. * BFD_RELOC_PPC64_PLTGOT16_HA:           howto manager.      (line  527)
  9306. * BFD_RELOC_PPC64_PLTGOT16_HI:           howto manager.      (line  526)
  9307. * BFD_RELOC_PPC64_PLTGOT16_LO:           howto manager.      (line  525)
  9308. * BFD_RELOC_PPC64_PLTGOT16_LO_DS:        howto manager.      (line  538)
  9309. * BFD_RELOC_PPC64_SECTOFF_DS:            howto manager.      (line  533)
  9310. * BFD_RELOC_PPC64_SECTOFF_LO_DS:         howto manager.      (line  534)
  9311. * BFD_RELOC_PPC64_TOC:                   howto manager.      (line  523)
  9312. * BFD_RELOC_PPC64_TOC16_DS:              howto manager.      (line  535)
  9313. * BFD_RELOC_PPC64_TOC16_HA:              howto manager.      (line  522)
  9314. * BFD_RELOC_PPC64_TOC16_HI:              howto manager.      (line  521)
  9315. * BFD_RELOC_PPC64_TOC16_LO:              howto manager.      (line  520)
  9316. * BFD_RELOC_PPC64_TOC16_LO_DS:           howto manager.      (line  536)
  9317. * BFD_RELOC_PPC64_TPREL16_DS:            howto manager.      (line  569)
  9318. * BFD_RELOC_PPC64_TPREL16_HIGHER:        howto manager.      (line  571)
  9319. * BFD_RELOC_PPC64_TPREL16_HIGHERA:       howto manager.      (line  572)
  9320. * BFD_RELOC_PPC64_TPREL16_HIGHEST:       howto manager.      (line  573)
  9321. * BFD_RELOC_PPC64_TPREL16_HIGHESTA:      howto manager.      (line  574)
  9322. * BFD_RELOC_PPC64_TPREL16_LO_DS:         howto manager.      (line  570)
  9323. * BFD_RELOC_PPC_B16:                     howto manager.      (line  489)
  9324. * BFD_RELOC_PPC_B16_BRNTAKEN:            howto manager.      (line  491)
  9325. * BFD_RELOC_PPC_B16_BRTAKEN:             howto manager.      (line  490)
  9326. * BFD_RELOC_PPC_B26:                     howto manager.      (line  486)
  9327. * BFD_RELOC_PPC_BA16:                    howto manager.      (line  492)
  9328. * BFD_RELOC_PPC_BA16_BRNTAKEN:           howto manager.      (line  494)
  9329. * BFD_RELOC_PPC_BA16_BRTAKEN:            howto manager.      (line  493)
  9330. * BFD_RELOC_PPC_BA26:                    howto manager.      (line  487)
  9331. * BFD_RELOC_PPC_COPY:                    howto manager.      (line  495)
  9332. * BFD_RELOC_PPC_DTPMOD:                  howto manager.      (line  542)
  9333. * BFD_RELOC_PPC_DTPREL:                  howto manager.      (line  552)
  9334. * BFD_RELOC_PPC_DTPREL16:                howto manager.      (line  548)
  9335. * BFD_RELOC_PPC_DTPREL16_HA:             howto manager.      (line  551)
  9336. * BFD_RELOC_PPC_DTPREL16_HI:             howto manager.      (line  550)
  9337. * BFD_RELOC_PPC_DTPREL16_LO:             howto manager.      (line  549)
  9338. * BFD_RELOC_PPC_EMB_BIT_FLD:             howto manager.      (line  514)
  9339. * BFD_RELOC_PPC_EMB_MRKREF:              howto manager.      (line  509)
  9340. * BFD_RELOC_PPC_EMB_NADDR16:             howto manager.      (line  501)
  9341. * BFD_RELOC_PPC_EMB_NADDR16_HA:          howto manager.      (line  504)
  9342. * BFD_RELOC_PPC_EMB_NADDR16_HI:          howto manager.      (line  503)
  9343. * BFD_RELOC_PPC_EMB_NADDR16_LO:          howto manager.      (line  502)
  9344. * BFD_RELOC_PPC_EMB_NADDR32:             howto manager.      (line  500)
  9345. * BFD_RELOC_PPC_EMB_RELSDA:              howto manager.      (line  515)
  9346. * BFD_RELOC_PPC_EMB_RELSEC16:            howto manager.      (line  510)
  9347. * BFD_RELOC_PPC_EMB_RELST_HA:            howto manager.      (line  513)
  9348. * BFD_RELOC_PPC_EMB_RELST_HI:            howto manager.      (line  512)
  9349. * BFD_RELOC_PPC_EMB_RELST_LO:            howto manager.      (line  511)
  9350. * BFD_RELOC_PPC_EMB_SDA21:               howto manager.      (line  508)
  9351. * BFD_RELOC_PPC_EMB_SDA2I16:             howto manager.      (line  506)
  9352. * BFD_RELOC_PPC_EMB_SDA2REL:             howto manager.      (line  507)
  9353. * BFD_RELOC_PPC_EMB_SDAI16:              howto manager.      (line  505)
  9354. * BFD_RELOC_PPC_GLOB_DAT:                howto manager.      (line  496)
  9355. * BFD_RELOC_PPC_GOT_DTPREL16:            howto manager.      (line  565)
  9356. * BFD_RELOC_PPC_GOT_DTPREL16_HA:         howto manager.      (line  568)
  9357. * BFD_RELOC_PPC_GOT_DTPREL16_HI:         howto manager.      (line  567)
  9358. * BFD_RELOC_PPC_GOT_DTPREL16_LO:         howto manager.      (line  566)
  9359. * BFD_RELOC_PPC_GOT_TLSGD16:             howto manager.      (line  553)
  9360. * BFD_RELOC_PPC_GOT_TLSGD16_HA:          howto manager.      (line  556)
  9361. * BFD_RELOC_PPC_GOT_TLSGD16_HI:          howto manager.      (line  555)
  9362. * BFD_RELOC_PPC_GOT_TLSGD16_LO:          howto manager.      (line  554)
  9363. * BFD_RELOC_PPC_GOT_TLSLD16:             howto manager.      (line  557)
  9364. * BFD_RELOC_PPC_GOT_TLSLD16_HA:          howto manager.      (line  560)
  9365. * BFD_RELOC_PPC_GOT_TLSLD16_HI:          howto manager.      (line  559)
  9366. * BFD_RELOC_PPC_GOT_TLSLD16_LO:          howto manager.      (line  558)
  9367. * BFD_RELOC_PPC_GOT_TPREL16:             howto manager.      (line  561)
  9368. * BFD_RELOC_PPC_GOT_TPREL16_HA:          howto manager.      (line  564)
  9369. * BFD_RELOC_PPC_GOT_TPREL16_HI:          howto manager.      (line  563)
  9370. * BFD_RELOC_PPC_GOT_TPREL16_LO:          howto manager.      (line  562)
  9371. * BFD_RELOC_PPC_JMP_SLOT:                howto manager.      (line  497)
  9372. * BFD_RELOC_PPC_LOCAL24PC:               howto manager.      (line  499)
  9373. * BFD_RELOC_PPC_RELATIVE:                howto manager.      (line  498)
  9374. * BFD_RELOC_PPC_TLS:                     howto manager.      (line  541)
  9375. * BFD_RELOC_PPC_TOC16:                   howto manager.      (line  488)
  9376. * BFD_RELOC_PPC_TPREL:                   howto manager.      (line  547)
  9377. * BFD_RELOC_PPC_TPREL16:                 howto manager.      (line  543)
  9378. * BFD_RELOC_PPC_TPREL16_HA:              howto manager.      (line  546)
  9379. * BFD_RELOC_PPC_TPREL16_HI:              howto manager.      (line  545)
  9380. * BFD_RELOC_PPC_TPREL16_LO:              howto manager.      (line  544)
  9381. * BFD_RELOC_RVA:                         howto manager.      (line   85)
  9382. * BFD_RELOC_SH_ALIGN:                    howto manager.      (line  677)
  9383. * BFD_RELOC_SH_CODE:                     howto manager.      (line  678)
  9384. * BFD_RELOC_SH_COPY:                     howto manager.      (line  683)
  9385. * BFD_RELOC_SH_COPY64:                   howto manager.      (line  708)
  9386. * BFD_RELOC_SH_COUNT:                    howto manager.      (line  676)
  9387. * BFD_RELOC_SH_DATA:                     howto manager.      (line  679)
  9388. * BFD_RELOC_SH_DISP12:                   howto manager.      (line  659)
  9389. * BFD_RELOC_SH_DISP12BY2:                howto manager.      (line  660)
  9390. * BFD_RELOC_SH_DISP12BY4:                howto manager.      (line  661)
  9391. * BFD_RELOC_SH_DISP12BY8:                howto manager.      (line  662)
  9392. * BFD_RELOC_SH_DISP20:                   howto manager.      (line  663)
  9393. * BFD_RELOC_SH_DISP20BY8:                howto manager.      (line  664)
  9394. * BFD_RELOC_SH_GLOB_DAT:                 howto manager.      (line  684)
  9395. * BFD_RELOC_SH_GLOB_DAT64:               howto manager.      (line  709)
  9396. * BFD_RELOC_SH_GOT10BY4:                 howto manager.      (line  712)
  9397. * BFD_RELOC_SH_GOT10BY8:                 howto manager.      (line  713)
  9398. * BFD_RELOC_SH_GOT_HI16:                 howto manager.      (line  691)
  9399. * BFD_RELOC_SH_GOT_LOW16:                howto manager.      (line  688)
  9400. * BFD_RELOC_SH_GOT_MEDHI16:              howto manager.      (line  690)
  9401. * BFD_RELOC_SH_GOT_MEDLOW16:             howto manager.      (line  689)
  9402. * BFD_RELOC_SH_GOTOFF_HI16:              howto manager.      (line  703)
  9403. * BFD_RELOC_SH_GOTOFF_LOW16:             howto manager.      (line  700)
  9404. * BFD_RELOC_SH_GOTOFF_MEDHI16:           howto manager.      (line  702)
  9405. * BFD_RELOC_SH_GOTOFF_MEDLOW16:          howto manager.      (line  701)
  9406. * BFD_RELOC_SH_GOTPC:                    howto manager.      (line  687)
  9407. * BFD_RELOC_SH_GOTPC_HI16:               howto manager.      (line  707)
  9408. * BFD_RELOC_SH_GOTPC_LOW16:              howto manager.      (line  704)
  9409. * BFD_RELOC_SH_GOTPC_MEDHI16:            howto manager.      (line  706)
  9410. * BFD_RELOC_SH_GOTPC_MEDLOW16:           howto manager.      (line  705)
  9411. * BFD_RELOC_SH_GOTPLT10BY4:              howto manager.      (line  714)
  9412. * BFD_RELOC_SH_GOTPLT10BY8:              howto manager.      (line  715)
  9413. * BFD_RELOC_SH_GOTPLT32:                 howto manager.      (line  716)
  9414. * BFD_RELOC_SH_GOTPLT_HI16:              howto manager.      (line  695)
  9415. * BFD_RELOC_SH_GOTPLT_LOW16:             howto manager.      (line  692)
  9416. * BFD_RELOC_SH_GOTPLT_MEDHI16:           howto manager.      (line  694)
  9417. * BFD_RELOC_SH_GOTPLT_MEDLOW16:          howto manager.      (line  693)
  9418. * BFD_RELOC_SH_IMM3:                     howto manager.      (line  657)
  9419. * BFD_RELOC_SH_IMM3U:                    howto manager.      (line  658)
  9420. * BFD_RELOC_SH_IMM4:                     howto manager.      (line  665)
  9421. * BFD_RELOC_SH_IMM4BY2:                  howto manager.      (line  666)
  9422. * BFD_RELOC_SH_IMM4BY4:                  howto manager.      (line  667)
  9423. * BFD_RELOC_SH_IMM8:                     howto manager.      (line  668)
  9424. * BFD_RELOC_SH_IMM8BY2:                  howto manager.      (line  669)
  9425. * BFD_RELOC_SH_IMM8BY4:                  howto manager.      (line  670)
  9426. * BFD_RELOC_SH_IMM_HI16:                 howto manager.      (line  734)
  9427. * BFD_RELOC_SH_IMM_HI16_PCREL:           howto manager.      (line  735)
  9428. * BFD_RELOC_SH_IMM_LOW16:                howto manager.      (line  728)
  9429. * BFD_RELOC_SH_IMM_LOW16_PCREL:          howto manager.      (line  729)
  9430. * BFD_RELOC_SH_IMM_MEDHI16:              howto manager.      (line  732)
  9431. * BFD_RELOC_SH_IMM_MEDHI16_PCREL:        howto manager.      (line  733)
  9432. * BFD_RELOC_SH_IMM_MEDLOW16:             howto manager.      (line  730)
  9433. * BFD_RELOC_SH_IMM_MEDLOW16_PCREL:       howto manager.      (line  731)
  9434. * BFD_RELOC_SH_IMMS10:                   howto manager.      (line  722)
  9435. * BFD_RELOC_SH_IMMS10BY2:                howto manager.      (line  723)
  9436. * BFD_RELOC_SH_IMMS10BY4:                howto manager.      (line  724)
  9437. * BFD_RELOC_SH_IMMS10BY8:                howto manager.      (line  725)
  9438. * BFD_RELOC_SH_IMMS16:                   howto manager.      (line  726)
  9439. * BFD_RELOC_SH_IMMS6:                    howto manager.      (line  719)
  9440. * BFD_RELOC_SH_IMMS6BY32:                howto manager.      (line  720)
  9441. * BFD_RELOC_SH_IMMU16:                   howto manager.      (line  727)
  9442. * BFD_RELOC_SH_IMMU5:                    howto manager.      (line  718)
  9443. * BFD_RELOC_SH_IMMU6:                    howto manager.      (line  721)
  9444. * BFD_RELOC_SH_JMP_SLOT:                 howto manager.      (line  685)
  9445. * BFD_RELOC_SH_JMP_SLOT64:               howto manager.      (line  710)
  9446. * BFD_RELOC_SH_LABEL:                    howto manager.      (line  680)
  9447. * BFD_RELOC_SH_LOOP_END:                 howto manager.      (line  682)
  9448. * BFD_RELOC_SH_LOOP_START:               howto manager.      (line  681)
  9449. * BFD_RELOC_SH_PCDISP12BY2:              howto manager.      (line  656)
  9450. * BFD_RELOC_SH_PCDISP8BY2:               howto manager.      (line  655)
  9451. * BFD_RELOC_SH_PCRELIMM8BY2:             howto manager.      (line  671)
  9452. * BFD_RELOC_SH_PCRELIMM8BY4:             howto manager.      (line  672)
  9453. * BFD_RELOC_SH_PLT_HI16:                 howto manager.      (line  699)
  9454. * BFD_RELOC_SH_PLT_LOW16:                howto manager.      (line  696)
  9455. * BFD_RELOC_SH_PLT_MEDHI16:              howto manager.      (line  698)
  9456. * BFD_RELOC_SH_PLT_MEDLOW16:             howto manager.      (line  697)
  9457. * BFD_RELOC_SH_PT_16:                    howto manager.      (line  736)
  9458. * BFD_RELOC_SH_RELATIVE:                 howto manager.      (line  686)
  9459. * BFD_RELOC_SH_RELATIVE64:               howto manager.      (line  711)
  9460. * BFD_RELOC_SH_SHMEDIA_CODE:             howto manager.      (line  717)
  9461. * BFD_RELOC_SH_SWITCH16:                 howto manager.      (line  673)
  9462. * BFD_RELOC_SH_SWITCH32:                 howto manager.      (line  674)
  9463. * BFD_RELOC_SH_TLS_DTPMOD32:             howto manager.      (line  742)
  9464. * BFD_RELOC_SH_TLS_DTPOFF32:             howto manager.      (line  743)
  9465. * BFD_RELOC_SH_TLS_GD_32:                howto manager.      (line  737)
  9466. * BFD_RELOC_SH_TLS_IE_32:                howto manager.      (line  740)
  9467. * BFD_RELOC_SH_TLS_LD_32:                howto manager.      (line  738)
  9468. * BFD_RELOC_SH_TLS_LDO_32:               howto manager.      (line  739)
  9469. * BFD_RELOC_SH_TLS_LE_32:                howto manager.      (line  741)
  9470. * BFD_RELOC_SH_TLS_TPOFF32:              howto manager.      (line  744)
  9471. * BFD_RELOC_SH_USES:                     howto manager.      (line  675)
  9472. * BFD_RELOC_SPARC13:                     howto manager.      (line  119)
  9473. * BFD_RELOC_SPARC22:                     howto manager.      (line  118)
  9474. * BFD_RELOC_SPARC_10:                    howto manager.      (line  141)
  9475. * BFD_RELOC_SPARC_11:                    howto manager.      (line  142)
  9476. * BFD_RELOC_SPARC_5:                     howto manager.      (line  154)
  9477. * BFD_RELOC_SPARC_6:                     howto manager.      (line  153)
  9478. * BFD_RELOC_SPARC_64:                    howto manager.      (line  140)
  9479. * BFD_RELOC_SPARC_7:                     howto manager.      (line  152)
  9480. * BFD_RELOC_SPARC_BASE13:                howto manager.      (line  136)
  9481. * BFD_RELOC_SPARC_BASE22:                howto manager.      (line  137)
  9482. * BFD_RELOC_SPARC_COPY:                  howto manager.      (line  126)
  9483. * BFD_RELOC_SPARC_DISP64:                howto manager.      (line  155)
  9484. * BFD_RELOC_SPARC_GLOB_DAT:              howto manager.      (line  127)
  9485. * BFD_RELOC_SPARC_GOT10:                 howto manager.      (line  120)
  9486. * BFD_RELOC_SPARC_GOT13:                 howto manager.      (line  121)
  9487. * BFD_RELOC_SPARC_GOT22:                 howto manager.      (line  122)
  9488. * BFD_RELOC_SPARC_H44:                   howto manager.      (line  160)
  9489. * BFD_RELOC_SPARC_HH22:                  howto manager.      (line  144)
  9490. * BFD_RELOC_SPARC_HIX22:                 howto manager.      (line  158)
  9491. * BFD_RELOC_SPARC_HM10:                  howto manager.      (line  145)
  9492. * BFD_RELOC_SPARC_JMP_SLOT:              howto manager.      (line  128)
  9493. * BFD_RELOC_SPARC_L44:                   howto manager.      (line  162)
  9494. * BFD_RELOC_SPARC_LM22:                  howto manager.      (line  146)
  9495. * BFD_RELOC_SPARC_LOX10:                 howto manager.      (line  159)
  9496. * BFD_RELOC_SPARC_M44:                   howto manager.      (line  161)
  9497. * BFD_RELOC_SPARC_OLO10:                 howto manager.      (line  143)
  9498. * BFD_RELOC_SPARC_PC10:                  howto manager.      (line  123)
  9499. * BFD_RELOC_SPARC_PC22:                  howto manager.      (line  124)
  9500. * BFD_RELOC_SPARC_PC_HH22:               howto manager.      (line  147)
  9501. * BFD_RELOC_SPARC_PC_HM10:               howto manager.      (line  148)
  9502. * BFD_RELOC_SPARC_PC_LM22:               howto manager.      (line  149)
  9503. * BFD_RELOC_SPARC_PLT32:                 howto manager.      (line  156)
  9504. * BFD_RELOC_SPARC_PLT64:                 howto manager.      (line  157)
  9505. * BFD_RELOC_SPARC_REGISTER:              howto manager.      (line  163)
  9506. * BFD_RELOC_SPARC_RELATIVE:              howto manager.      (line  129)
  9507. * BFD_RELOC_SPARC_REV32:                 howto manager.      (line  166)
  9508. * BFD_RELOC_SPARC_TLS_DTPMOD32:          howto manager.      (line  187)
  9509. * BFD_RELOC_SPARC_TLS_DTPMOD64:          howto manager.      (line  188)
  9510. * BFD_RELOC_SPARC_TLS_DTPOFF32:          howto manager.      (line  189)
  9511. * BFD_RELOC_SPARC_TLS_DTPOFF64:          howto manager.      (line  190)
  9512. * BFD_RELOC_SPARC_TLS_GD_ADD:            howto manager.      (line  171)
  9513. * BFD_RELOC_SPARC_TLS_GD_CALL:           howto manager.      (line  172)
  9514. * BFD_RELOC_SPARC_TLS_GD_HI22:           howto manager.      (line  169)
  9515. * BFD_RELOC_SPARC_TLS_GD_LO10:           howto manager.      (line  170)
  9516. * BFD_RELOC_SPARC_TLS_IE_ADD:            howto manager.      (line  184)
  9517. * BFD_RELOC_SPARC_TLS_IE_HI22:           howto manager.      (line  180)
  9518. * BFD_RELOC_SPARC_TLS_IE_LD:             howto manager.      (line  182)
  9519. * BFD_RELOC_SPARC_TLS_IE_LDX:            howto manager.      (line  183)
  9520. * BFD_RELOC_SPARC_TLS_IE_LO10:           howto manager.      (line  181)
  9521. * BFD_RELOC_SPARC_TLS_LDM_ADD:           howto manager.      (line  175)
  9522. * BFD_RELOC_SPARC_TLS_LDM_CALL:          howto manager.      (line  176)
  9523. * BFD_RELOC_SPARC_TLS_LDM_HI22:          howto manager.      (line  173)
  9524. * BFD_RELOC_SPARC_TLS_LDM_LO10:          howto manager.      (line  174)
  9525. * BFD_RELOC_SPARC_TLS_LDO_ADD:           howto manager.      (line  179)
  9526. * BFD_RELOC_SPARC_TLS_LDO_HIX22:         howto manager.      (line  177)
  9527. * BFD_RELOC_SPARC_TLS_LDO_LOX10:         howto manager.      (line  178)
  9528. * BFD_RELOC_SPARC_TLS_LE_HIX22:          howto manager.      (line  185)
  9529. * BFD_RELOC_SPARC_TLS_LE_LOX10:          howto manager.      (line  186)
  9530. * BFD_RELOC_SPARC_TLS_TPOFF32:           howto manager.      (line  191)
  9531. * BFD_RELOC_SPARC_TLS_TPOFF64:           howto manager.      (line  192)
  9532. * BFD_RELOC_SPARC_UA16:                  howto manager.      (line  130)
  9533. * BFD_RELOC_SPARC_UA32:                  howto manager.      (line  131)
  9534. * BFD_RELOC_SPARC_UA64:                  howto manager.      (line  132)
  9535. * BFD_RELOC_SPARC_WDISP16:               howto manager.      (line  150)
  9536. * BFD_RELOC_SPARC_WDISP19:               howto manager.      (line  151)
  9537. * BFD_RELOC_SPARC_WDISP22:               howto manager.      (line  117)
  9538. * BFD_RELOC_SPARC_WPLT30:                howto manager.      (line  125)
  9539. * BFD_RELOC_THUMB_PCREL_BLX:             howto manager.      (line  601)
  9540. * BFD_RELOC_THUMB_PCREL_BRANCH12:        howto manager.      (line  749)
  9541. * BFD_RELOC_THUMB_PCREL_BRANCH23:        howto manager.      (line  750)
  9542. * BFD_RELOC_THUMB_PCREL_BRANCH9:         howto manager.      (line  748)
  9543. * BFD_RELOC_TIC30_LDP:                   howto manager.      (line  956)
  9544. * BFD_RELOC_TIC54X_16_OF_23:             howto manager.      (line  974)
  9545. * BFD_RELOC_TIC54X_23:                   howto manager.      (line  971)
  9546. * BFD_RELOC_TIC54X_MS7_OF_23:            howto manager.      (line  979)
  9547. * BFD_RELOC_TIC54X_PARTLS7:              howto manager.      (line  961)
  9548. * BFD_RELOC_TIC54X_PARTMS9:              howto manager.      (line  966)
  9549. * bfd_reloc_type_lookup:                 howto manager.      (line 1693)
  9550. * BFD_RELOC_V850_22_PCREL:               howto manager.      (line  883)
  9551. * BFD_RELOC_V850_9_PCREL:                howto manager.      (line  880)
  9552. * BFD_RELOC_V850_ALIGN:                  howto manager.      (line  941)
  9553. * BFD_RELOC_V850_CALLT_16_16_OFFSET:     howto manager.      (line  932)
  9554. * BFD_RELOC_V850_CALLT_6_7_OFFSET:       howto manager.      (line  929)
  9555. * BFD_RELOC_V850_LO16_SPLIT_OFFSET:      howto manager.      (line  944)
  9556. * BFD_RELOC_V850_LONGCALL:               howto manager.      (line  935)
  9557. * BFD_RELOC_V850_LONGJUMP:               howto manager.      (line  938)
  9558. * BFD_RELOC_V850_SDA_15_16_OFFSET:       howto manager.      (line  889)
  9559. * BFD_RELOC_V850_SDA_16_16_OFFSET:       howto manager.      (line  886)
  9560. * BFD_RELOC_V850_SDA_16_16_SPLIT_OFFSET: howto manager.      (line  921)
  9561. * BFD_RELOC_V850_TDA_16_16_OFFSET:       howto manager.      (line  911)
  9562. * BFD_RELOC_V850_TDA_4_4_OFFSET:         howto manager.      (line  918)
  9563. * BFD_RELOC_V850_TDA_4_5_OFFSET:         howto manager.      (line  914)
  9564. * BFD_RELOC_V850_TDA_6_8_OFFSET:         howto manager.      (line  900)
  9565. * BFD_RELOC_V850_TDA_7_7_OFFSET:         howto manager.      (line  908)
  9566. * BFD_RELOC_V850_TDA_7_8_OFFSET:         howto manager.      (line  904)
  9567. * BFD_RELOC_V850_ZDA_15_16_OFFSET:       howto manager.      (line  896)
  9568. * BFD_RELOC_V850_ZDA_16_16_OFFSET:       howto manager.      (line  893)
  9569. * BFD_RELOC_V850_ZDA_16_16_SPLIT_OFFSET: howto manager.      (line  925)
  9570. * BFD_RELOC_VAX_GLOB_DAT:                howto manager.      (line 1594)
  9571. * BFD_RELOC_VAX_JMP_SLOT:                howto manager.      (line 1595)
  9572. * BFD_RELOC_VAX_RELATIVE:                howto manager.      (line 1596)
  9573. * BFD_RELOC_VPE4KMATH_DATA:              howto manager.      (line 1291)
  9574. * BFD_RELOC_VPE4KMATH_INSN:              howto manager.      (line 1292)
  9575. * BFD_RELOC_VTABLE_ENTRY:                howto manager.      (line 1296)
  9576. * BFD_RELOC_VTABLE_INHERIT:              howto manager.      (line 1295)
  9577. * BFD_RELOC_X86_64_32S:                  howto manager.      (line  449)
  9578. * BFD_RELOC_X86_64_COPY:                 howto manager.      (line  444)
  9579. * BFD_RELOC_X86_64_DTPMOD64:             howto manager.      (line  450)
  9580. * BFD_RELOC_X86_64_DTPOFF32:             howto manager.      (line  455)
  9581. * BFD_RELOC_X86_64_DTPOFF64:             howto manager.      (line  451)
  9582. * BFD_RELOC_X86_64_GLOB_DAT:             howto manager.      (line  445)
  9583. * BFD_RELOC_X86_64_GOT32:                howto manager.      (line  442)
  9584. * BFD_RELOC_X86_64_GOTPCREL:             howto manager.      (line  448)
  9585. * BFD_RELOC_X86_64_GOTTPOFF:             howto manager.      (line  456)
  9586. * BFD_RELOC_X86_64_JUMP_SLOT:            howto manager.      (line  446)
  9587. * BFD_RELOC_X86_64_PLT32:                howto manager.      (line  443)
  9588. * BFD_RELOC_X86_64_RELATIVE:             howto manager.      (line  447)
  9589. * BFD_RELOC_X86_64_TLSGD:                howto manager.      (line  453)
  9590. * BFD_RELOC_X86_64_TLSLD:                howto manager.      (line  454)
  9591. * BFD_RELOC_X86_64_TPOFF32:              howto manager.      (line  457)
  9592. * BFD_RELOC_X86_64_TPOFF64:              howto manager.      (line  452)
  9593. * BFD_RELOC_XSTORMY16_12:                howto manager.      (line 1589)
  9594. * BFD_RELOC_XSTORMY16_24:                howto manager.      (line 1590)
  9595. * BFD_RELOC_XSTORMY16_FPTR16:            howto manager.      (line 1591)
  9596. * BFD_RELOC_XSTORMY16_REL_12:            howto manager.      (line 1588)
  9597. * BFD_RELOC_XTENSA_ASM_EXPAND:           howto manager.      (line 1682)
  9598. * BFD_RELOC_XTENSA_ASM_SIMPLIFY:         howto manager.      (line 1687)
  9599. * BFD_RELOC_XTENSA_DIFF16:               howto manager.      (line 1629)
  9600. * BFD_RELOC_XTENSA_DIFF32:               howto manager.      (line 1630)
  9601. * BFD_RELOC_XTENSA_DIFF8:                howto manager.      (line 1628)
  9602. * BFD_RELOC_XTENSA_GLOB_DAT:             howto manager.      (line 1618)
  9603. * BFD_RELOC_XTENSA_JMP_SLOT:             howto manager.      (line 1619)
  9604. * BFD_RELOC_XTENSA_OP0:                  howto manager.      (line 1676)
  9605. * BFD_RELOC_XTENSA_OP1:                  howto manager.      (line 1677)
  9606. * BFD_RELOC_XTENSA_OP2:                  howto manager.      (line 1678)
  9607. * BFD_RELOC_XTENSA_PLT:                  howto manager.      (line 1623)
  9608. * BFD_RELOC_XTENSA_RELATIVE:             howto manager.      (line 1620)
  9609. * BFD_RELOC_XTENSA_RTLD:                 howto manager.      (line 1613)
  9610. * BFD_RELOC_XTENSA_SLOT0_ALT:            howto manager.      (line 1658)
  9611. * BFD_RELOC_XTENSA_SLOT0_OP:             howto manager.      (line 1638)
  9612. * BFD_RELOC_XTENSA_SLOT10_ALT:           howto manager.      (line 1668)
  9613. * BFD_RELOC_XTENSA_SLOT10_OP:            howto manager.      (line 1648)
  9614. * BFD_RELOC_XTENSA_SLOT11_ALT:           howto manager.      (line 1669)
  9615. * BFD_RELOC_XTENSA_SLOT11_OP:            howto manager.      (line 1649)
  9616. * BFD_RELOC_XTENSA_SLOT12_ALT:           howto manager.      (line 1670)
  9617. * BFD_RELOC_XTENSA_SLOT12_OP:            howto manager.      (line 1650)
  9618. * BFD_RELOC_XTENSA_SLOT13_ALT:           howto manager.      (line 1671)
  9619. * BFD_RELOC_XTENSA_SLOT13_OP:            howto manager.      (line 1651)
  9620. * BFD_RELOC_XTENSA_SLOT14_ALT:           howto manager.      (line 1672)
  9621. * BFD_RELOC_XTENSA_SLOT14_OP:            howto manager.      (line 1652)
  9622. * BFD_RELOC_XTENSA_SLOT1_ALT:            howto manager.      (line 1659)
  9623. * BFD_RELOC_XTENSA_SLOT1_OP:             howto manager.      (line 1639)
  9624. * BFD_RELOC_XTENSA_SLOT2_ALT:            howto manager.      (line 1660)
  9625. * BFD_RELOC_XTENSA_SLOT2_OP:             howto manager.      (line 1640)
  9626. * BFD_RELOC_XTENSA_SLOT3_ALT:            howto manager.      (line 1661)
  9627. * BFD_RELOC_XTENSA_SLOT3_OP:             howto manager.      (line 1641)
  9628. * BFD_RELOC_XTENSA_SLOT4_ALT:            howto manager.      (line 1662)
  9629. * BFD_RELOC_XTENSA_SLOT4_OP:             howto manager.      (line 1642)
  9630. * BFD_RELOC_XTENSA_SLOT5_ALT:            howto manager.      (line 1663)
  9631. * BFD_RELOC_XTENSA_SLOT5_OP:             howto manager.      (line 1643)
  9632. * BFD_RELOC_XTENSA_SLOT6_ALT:            howto manager.      (line 1664)
  9633. * BFD_RELOC_XTENSA_SLOT6_OP:             howto manager.      (line 1644)
  9634. * BFD_RELOC_XTENSA_SLOT7_ALT:            howto manager.      (line 1665)
  9635. * BFD_RELOC_XTENSA_SLOT7_OP:             howto manager.      (line 1645)
  9636. * BFD_RELOC_XTENSA_SLOT8_ALT:            howto manager.      (line 1666)
  9637. * BFD_RELOC_XTENSA_SLOT8_OP:             howto manager.      (line 1646)
  9638. * BFD_RELOC_XTENSA_SLOT9_ALT:            howto manager.      (line 1667)
  9639. * BFD_RELOC_XTENSA_SLOT9_OP:             howto manager.      (line 1647)
  9640. * bfd_scan_arch:                         Architectures.      (line  369)
  9641. * bfd_scan_vma:                          BFD front end.      (line  420)
  9642. * bfd_seach_for_target:                  bfd_target.         (line  445)
  9643. * bfd_section_already_linked:            Writing the symbol table.
  9644.                                                              (line   55)
  9645. * bfd_section_list_clear:                section prototypes. (line    8)
  9646. * bfd_sections_find_if:                  section prototypes. (line  145)
  9647. * bfd_set_arch_info:                     Architectures.      (line  410)
  9648. * bfd_set_archive_head:                  Archives.           (line   66)
  9649. * bfd_set_default_target:                bfd_target.         (line  410)
  9650. * bfd_set_error:                         BFD front end.      (line  235)
  9651. * bfd_set_error_handler:                 BFD front end.      (line  275)
  9652. * bfd_set_error_program_name:            BFD front end.      (line  284)
  9653. * bfd_set_file_flags:                    BFD front end.      (line  340)
  9654. * bfd_set_format:                        Formats.            (line   65)
  9655. * bfd_set_gp_size:                       BFD front end.      (line  410)
  9656. * bfd_set_private_flags:                 BFD front end.      (line  487)
  9657. * bfd_set_reloc:                         BFD front end.      (line  330)
  9658. * bfd_set_section_contents:              section prototypes. (line  176)
  9659. * bfd_set_section_flags:                 section prototypes. (line  109)
  9660. * bfd_set_section_size:                  section prototypes. (line  162)
  9661. * bfd_set_start_address:                 BFD front end.      (line  389)
  9662. * bfd_set_symtab:                        symbol handling functions.
  9663.                                                              (line   60)
  9664. * bfd_symbol_info:                       symbol handling functions.
  9665.                                                              (line  130)
  9666. * bfd_target_list:                       bfd_target.         (line  436)
  9667. * bfd_write_bigendian_4byte_int:         Internal.           (line   10)
  9668. * bfd_zalloc:                            Opening and Closing.
  9669.                                                              (line  188)
  9670. * coff_symbol_type:                      coff.               (line  186)
  9671. * core_file_matches_executable_p:        Core Files.         (line   27)
  9672. * find_separate_debug_file:              Opening and Closing.
  9673.                                                              (line  230)
  9674. * get_debug_link_info:                   Opening and Closing.
  9675.                                                              (line  211)
  9676. * Hash tables:                           Hash Tables.        (line    6)
  9677. * internal object-file format:           Canonical format.   (line   11)
  9678. * Linker:                                Linker Functions.   (line    6)
  9679. * Other functions:                       BFD front end.      (line  502)
  9680. * separate_debug_file_exists:            Opening and Closing.
  9681.                                                              (line  221)
  9682. * struct bfd_iovec:                      BFD front end.      (line  646)
  9683. * target vector (_bfd_final_link):       Performing the Final Link.
  9684.                                                              (line    6)
  9685. * target vector (_bfd_link_add_symbols): Adding Symbols to the Hash Table.
  9686.                                                              (line    6)
  9687. * target vector (_bfd_link_hash_table_create): Creating a Linker Hash Table.
  9688.                                                              (line    6)
  9689. * The HOWTO Macro:                       typedef arelent.    (line  290)
  9690. * what is it?:                           Overview.           (line    6)
  9691.  
  9692.  
  9693. 
  9694. Tag Table:
  9695. Node: Top816
  9696. Node: Overview1148
  9697. Node: History2199
  9698. Node: How It Works3145
  9699. Node: What BFD Version 2 Can Do4687
  9700. Node: BFD information loss6002
  9701. Node: Canonical format8534
  9702. Node: BFD front end12906
  9703. Node: Memory Usage38133
  9704. Node: Initialization39361
  9705. Node: Sections39757
  9706. Node: Section Input40240
  9707. Node: Section Output41605
  9708. Node: typedef asection44091
  9709. Node: section prototypes61690
  9710. Node: Symbols70673
  9711. Node: Reading Symbols72268
  9712. Node: Writing Symbols73375
  9713. Node: Mini Symbols75084
  9714. Node: typedef asymbol76058
  9715. Node: symbol handling functions80976
  9716. Node: Archives86318
  9717. Node: Formats89995
  9718. Node: Relocations92886
  9719. Node: typedef arelent93613
  9720. Node: howto manager109331
  9721. Node: Core Files165504
  9722. Node: Targets166583
  9723. Node: bfd_target168553
  9724. Node: Architectures187873
  9725. Node: Opening and Closing208170
  9726. Node: Internal217883
  9727. Node: File Caching224155
  9728. Node: Linker Functions227462
  9729. Node: Creating a Linker Hash Table229135
  9730. Node: Adding Symbols to the Hash Table230873
  9731. Node: Differing file formats231773
  9732. Node: Adding symbols from an object file233521
  9733. Node: Adding symbols from an archive235672
  9734. Node: Performing the Final Link238086
  9735. Node: Information provided by the linker239328
  9736. Node: Relocating the section contents240478
  9737. Node: Writing the symbol table242229
  9738. Node: Hash Tables245222
  9739. Node: Creating and Freeing a Hash Table246420
  9740. Node: Looking Up or Entering a String247670
  9741. Node: Traversing a Hash Table248923
  9742. Node: Deriving a New Hash Table Type249712
  9743. Node: Define the Derived Structures250778
  9744. Node: Write the Derived Creation Routine251859
  9745. Node: Write Other Derived Routines254553
  9746. Node: BFD back ends255868
  9747. Node: What to Put Where256138
  9748. Node: aout256276
  9749. Node: coff262527
  9750. Node: elf287203
  9751. Node: mmo288057
  9752. Node: File layout288985
  9753. Node: Symbol-table294632
  9754. Node: mmo section mapping298401
  9755. Node: GNU Free Documentation License302053
  9756. Node: Index321773
  9757. 
  9758. End Tag Table
  9759.